|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-3.0.3-testing] [xenstore] Don't limit the number of
# HG changeset patch
# User Christian Limpach <Christian.Limpach@xxxxxxxxxxxxx>
# Date 1160648732 -3600
# Node ID b0ee6789e428fc06593c1862c54c3cac98737d95
# Parent 4fdcccd2235213f32e7b2a37cd09206d0c710701
[xenstore] Don't limit the number of concurrent transactions for domain0
connections
since both xend and the xenstore-* utilities used in the hotplug
scripts can easily reach the limit and we trust them anyway.
Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxxx>
---
tools/xenstore/xenstored_transaction.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -r 4fdcccd22352 -r b0ee6789e428 tools/xenstore/xenstored_transaction.c
--- a/tools/xenstore/xenstored_transaction.c Thu Oct 12 11:08:48 2006 +0100
+++ b/tools/xenstore/xenstored_transaction.c Thu Oct 12 11:25:32 2006 +0100
@@ -133,7 +133,7 @@ void do_transaction_start(struct connect
return;
}
- if (conn->transaction_started > quota_max_transaction) {
+ if (conn->id && conn->transaction_started > quota_max_transaction) {
send_error(conn, ENOSPC);
return;
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-3.0.3-testing] [xenstore] Don't limit the number of concurrent transactions for domain0 connections,
Xen patchbot-3.0.3-testing <=
|
|
|
|
|