search for: braakman

Displaying 17 results from an estimated 17 matches for "braakman".

Did you mean: backman
2005 Sep 08
45
/proc/xen/xenbus supports watch?
Hi, Anybody (Christian?) could please tell me if we can get the support for registering watch with /proc/xen/xenbus? (..OK, I know that we will change it this /proc stuff to a device soon) So far we can only do read/write/rm. I really miss the xen watch feature. Many thanks, Hieu _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2005 Jun 16
9
Re: dom0 bootstrap for xenstore
...barf_perror("Failed to map page %li", err); + printf("Mapped page at %p\n", page); + printf("Page says %s\n", (char *)page); + munmap(page, getpagesize()); + printf("unmapped\n"); + + return 0; +} + -- A bad analogy is like a leaky screwdriver -- Richard Braakman _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Aug 04
7
[PATCH] Convert shutdown to use xenstore
The attached patch: 1. Converts the shutdown driver and xend to use the store instead of control messages, 2. Includes Anthony''s xenstore notification code, and 3. Changes xend so that sysrq''s are no longer sent as "special case" shutdown messages. Store keys are cheap, so making the sysrq delivery less obscure is good. I think I have made all of the
2005 Aug 30
10
[RFC] Switching store to use domain id''s for keys
Hey guys, As I go through the console code, I notice that the domain console information is being stored in /console/%d/domain instead of within the /domain tree as one would expect. The reasoning seems obvious to me, there''s no easy way to get the UUID for a domain so constructing a UUID based path outside of Xend is very difficult. Perhaps now is a good time to reconsider just
2005 May 02
1
[PATCH] config_xen0_tun.patch
QEMU needs CONFIG_TUN to enable networking. Signed-off-by: Edwin Zhai <edwin.zhai@intel.com> Signed-off-by: Arun Sharma <arun.sharma@intel.com> --- 1.56/linux-2.6.11-xen-sparse/arch/xen/configs/xen0_defconfig_x86_32 2005-04-13 15:38:59 -07:00 +++ edited/xen0_defconfig_x86_32 2005-05-02 13:18:14 -07:00 @@ -598,7 +598,7 @@ # CONFIG_DUMMY is not set # CONFIG_BONDING is not set #
2005 Nov 24
1
[PATCH] dom0_ops -EPERM not -EACCES?
...00:55:37 2005 +++ b/xen/common/dom0_ops.c Thu Nov 24 12:31:37 2005 @@ -102,7 +102,7 @@ return -EACCES; if ( acm_pre_dom0_op(op, &ssid) ) - return -EACCES; + return -EPERM; spin_lock(&dom0_lock); -- A bad analogy is like a leaky screwdriver -- Richard Braakman _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Jan 17
0
[PATCH] Xen bk snapshot: netfront.c should use module_init()
...s/xen/netfront/netfront.c.~1~ 2005-01-11 15:35:59.000000000 +1100 +++ linux-2.6.10-xen-sparse/drivers/xen/netfront/netfront.c 2005-01-17 15:41:21.000000000 +1100 @@ -1343,4 +1343,4 @@ } -__initcall(netif_init); +module_init(netif_init); -- A bad analogy is like a leaky screwdriver -- Richard Braakman ------------------------------------------------------- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It''s fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt ________________________________...
2005 Sep 10
2
watch event for die domain ?
Hi, I am writing a small application to watch for xenstore events. I want to know when a specific domain shutdown or reboot. It is best to watch it via xenbus interface, but how? Is there any event or node can give me such an event? If not, I must periodically scan the domains (using libxc interface) to detect if a domain dies, but that is not as good as xenbus approach. Many thanks. Hieu
2005 Nov 23
2
RE: __ia64__ ifdef in xmalloc.c: "Fix ar.unat handling forfast paths"
>It''s not hard to support arbitrary alignment, at the cost of burning >some space. We should probably do that. The "we" in that last sentence is the Xen team ... referring to making fixes to xmalloc? -Tony _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Oct 12
1
[PATCH] Restore, comment, correct memory barriers in xenstored.
...f %i bytes (%i to go)\n", avail, len); /* If it was full, tell them we''ve taken some. */ if (was_full) + /* Implies mb(): they will see new header. */ notify_remote_via_evtchn(xen_start_info->store_evtchn); } -- A bad analogy is like a leaky screwdriver -- Richard Braakman _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Apr 18
1
[Bridge] bridge at start up
...his also means you get type checking etc without the > config option. > > BTW, someone should go through and start ripping out #ifdef > CONFIG_PROC_FS around those structs, too... > > Cheers, > Rusty. > -- > A bad analogy is like a leaky screwdriver -- Richard Braakman > > > ------------------------------ > > Message: 8 > Date: Fri, 28 Jan 2005 12:32:25 +1100 > From: Rusty Russell <rusty@rustcorp.com.au> > Subject: [Bridge] Re: [PATCH/RFC] Reduce call chain length in > netfilter > To: "David S. Miller" &...
2005 Aug 02
4
Re: [Xen-changelog] Fixes.
On Tuesday 02 August 2005 10:42, Xen patchbot -unstable wrote: > # HG changeset patch > # User smh22@firebug.cl.cam.ac.uk > # Node ID 59e76450e286240decceda23eca343ec4604124f > # Parent 48dea637aac96bcbabe788d036b52570520cc82e > Fixes. Sorry, but could we not make checkin comments like "Fixes."? It would just take a few more seconds to describe it in a complete
2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...channel for store communication. */ +} PACKED start_info_t; /* 332/336 bytes */ /* These flags are passed in the ''flags'' field of start_info_t. */ #define SIF_PRIVILEGED (1<<0) /* Is the domain privileged? */ -- A bad analogy is like a leaky screwdriver -- Richard Braakman _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Nov 22
2
RE: __ia64__ ifdef in xmalloc.c: "Fix ar.unat handling forfast paths"
...ocation to succeed, but not give the alignment requested. It usually >indicates the caller should be fixed. > >Does someone with an ia64 box know why, or want to rip it out and see >what breaks? > >Thanks! >Rusty. >-- >A bad analogy is like a leaky screwdriver -- Richard Braakman > I didn''t note that ifdef before, and removing it doesn''t break dom0. I doubt the reason from following definition which is copied from Linux directly into Xen: #ifdef CONFIG_SMP # define SMP_CACHE_SHIFT L1_CACHE_SHIFT # define SMP_CACHE_BYTES L1_CACHE_BYTES #else /* *...
2005 Jan 05
1
rsync filename heuristics
...rprintf(FINFO,"recv mapped %s of size %.0f\n",fnamecmp,(double)st.st_size); > + rprintf(FINFO,"recv mapped %s of size %.0f\n",fname,(double)st.st_size); > } else { > buf = NULL; > } > > -- > A bad analogy is like a leaky screwdriver -- Richard Braakman -- Martin
2007 Apr 18
3
[Bridge] Re: do_IRQ: stack overflow: 872..
On Fri, 07 Jan 2005 17:05:59 +0000 David Woodhouse <dwmw2@infradead.org> wrote: > On Sat, 2004-12-18 at 08:50 +0100, Andi Kleen wrote: > > It's not really an oops, just a warning that stack space got quiet > > tight. > > > > The problem seems to be that the br netfilter code is nesting far too > > deeply and recursing several times. Looks like a design
2005 May 30
24
stable / unstable parallel install?
Hi, Is there some easy way to install both 2.x and unstable xen tools at the same machine? Seems /usr is hardcoded everythere in the tools Makefiles, looks like there is no easy way to put them to different paths (say, prefix /opt/xen2 and /opt/xen3) :-/ Gerd _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com