search for: brogers

Displaying 20 results from an estimated 30 matches for "brogers".

Did you mean: rogers
2011 Feb 10
2
[PATCH] virtio_net: Add schedule check to napi_enable call
From: "Bruce Rogers" <brogers at novell.com> Under harsh testing conditions, including low memory, the guest would stop receiving packets. With this patch applied we no longer see any problems in the driver while performing these tests for extended periods of time. Make sure napi is scheduled subsequent to each napi_enable...
2011 Feb 10
2
[PATCH] virtio_net: Add schedule check to napi_enable call
From: "Bruce Rogers" <brogers at novell.com> Under harsh testing conditions, including low memory, the guest would stop receiving packets. With this patch applied we no longer see any problems in the driver while performing these tests for extended periods of time. Make sure napi is scheduled subsequent to each napi_enable...
2008 Jan 05
11
[PATCH] Fix performance problems with mprotect()
...and tested with the 3.0.4 era hypervisor that ships with SLES 10, and then ported and tested on current xen-unstable. The Linux patch was written and tested on 2.6.16 and made apply to the 2.6.18 tree without further testing. Feedback and comments are appreciated. Signed-off-by: Bruce Rogers <brogers@novell.com> - Bruce Rogers _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Apr 30
2
blkback does not copy full id from request to response
I just noticed that the linux block backend does not copy the full 64 bits of the id field of a request to the associated response. The blkif.h states that this is echoed in the response. An unsigned long in make_response is used as an intermediary. This would sure be helpful to me if the full 64 bits were echoed. - Bruce Rogers _______________________________________________ Xen-devel
2010 Jun 06
5
[PATCH] virtio_net: indicate oom when addbuf returns failure
...te: > This patch is a subset of an already upstream patch, but this portion > is useful in earlier releases. > > Please consider for the 2.6.32 and 2.6.33 stable trees. > > If the add_buf operation fails, indicate failure to the caller. > > Signed-off-by: Bruce Rogers <brogers at novell.com> > Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> Actually this code looks strange: Note that add_buf inicates out of memory condition with a positive return value, and ring full (which is not an error!) with -ENOSPC. So it seems that this patch (and upstream co...
2010 Jun 06
5
[PATCH] virtio_net: indicate oom when addbuf returns failure
...te: > This patch is a subset of an already upstream patch, but this portion > is useful in earlier releases. > > Please consider for the 2.6.32 and 2.6.33 stable trees. > > If the add_buf operation fails, indicate failure to the caller. > > Signed-off-by: Bruce Rogers <brogers at novell.com> > Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> Actually this code looks strange: Note that add_buf inicates out of memory condition with a positive return value, and ring full (which is not an error!) with -ENOSPC. So it seems that this patch (and upstream co...
2006 Mar 28
18
wallclock time for paravirtualized guests
The paravirtualized guests are offered wallclock time referenced to UTC only, while fully virtualized guests are given the option via the config file (localtime parameter) of starting with UTC time or local time. What would it take to optionally provide localtime to the paravirtualized guests as well? For a guest that launches assuming localtime as its time basis, then later deriving UTC from it
2008 Mar 07
0
[PATCH] Fix EDD pointer in int 13h, fn 48h BIOS call return buffer
...this when I was reviewing what was outstanding to get NetWare to run fully virtualized. The BIOS emulator code has the segment and offset backward in the returned buffer for the int 13h, fn 48h BIOS call. BTW: This is fixed in current Bochs emulator upstream code. Signed-off-by: Bruce Rogers <brogers@novell.com> diff -r 59b8768d0d0d tools/firmware/rombios/rombios.c --- a/tools/firmware/rombios/rombios.c Wed Mar 05 11:18:25 2008 +0000 +++ b/tools/firmware/rombios/rombios.c Fri Mar 07 05:36:51 2008 -0700 @@ -779,8 +779,8 @@ typedef struct { Bit32u sector_count1; Bit32u sector_co...
2006 Feb 24
0
[PATCH] Repost - support use of xen public headers by C89 era compilers
My apologies to the list, as the last patch was not correct. It did no harm, but was to the trailing comma on the structure above the enum I was targeting. This patch is correct. Signed-off-by: Bruce Rogers brogers@novell.com - Bruce _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2006 May 09
0
[RESEND][PATCH] Fix loading binary images that support or require PAE
...ord to this include information, and to process that information. It also attempts to provide a way to specify that the binary image is a 64 bit kernel, but that was an afterthought in this patch, so there could be things I''m missing there. - Bruce Rogers Signed-off-by: Bruce Rogers <brogers@novell.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2010 Jun 03
1
[PATCH 0/3][STABLE] KVM: Various issues in virtio_net
...6.32, 2.6.33, and 2.6.34 stable trees. (I assume this last problem also exists in more recent kernels than 2.6.32, but I haven't validated that.) With these 3 patches applied we no longer see any issues with virito networking using our certification test suite. Signed-off-by: Bruce Rogers <brogers at novell.com>
2010 Jun 03
0
[PATCH 3/3][STABLE] KVM: add schedule check to napi_enable call
...luding low memory, the guest would stop receiving packets. With this patch applied we no longer see any problems in the driver while performing these tests for extended periods of time. Make sure napi is scheduled subsequent to each napi_enable. Signed-off-by: Bruce Rogers <brogers at novell.com> Signed-off-by: Olaf Kirch <okir at suse.de> --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -388,6 +388,20 @@ static void skb_recv_done(struct virtque } } +static void virtnet_napi_enable(struct virtnet_info *vi) +{ + napi_enable(&vi...
2010 Jun 03
1
[PATCH 0/3][STABLE] KVM: Various issues in virtio_net
...6.32, 2.6.33, and 2.6.34 stable trees. (I assume this last problem also exists in more recent kernels than 2.6.32, but I haven't validated that.) With these 3 patches applied we no longer see any issues with virito networking using our certification test suite. Signed-off-by: Bruce Rogers <brogers at novell.com>
2010 Jun 03
0
[PATCH 3/3][STABLE] KVM: add schedule check to napi_enable call
...luding low memory, the guest would stop receiving packets. With this patch applied we no longer see any problems in the driver while performing these tests for extended periods of time. Make sure napi is scheduled subsequent to each napi_enable. Signed-off-by: Bruce Rogers <brogers at novell.com> Signed-off-by: Olaf Kirch <okir at suse.de> --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -388,6 +388,20 @@ static void skb_recv_done(struct virtque } } +static void virtnet_napi_enable(struct virtnet_info *vi) +{ + napi_enable(&vi...
2009 Jan 14
5
[PATCH] Support cross-bitness guest when core-dumping
...as previously that was not supported. It supports both PV and FV guests. The core file format generated by the host, needs to match that of the guest, so an alignment issue is addressed, along with the p2m frame list handling being done according to the guest size. Signed-off-by: Bruce Rogers <brogers@novell.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2010 May 20
10
Question about templates from variables
I''m running into an issue trying to do something like the following: class test { file {"test": content => template(''mytemplate1'',''mytemplate2''), } } class test::test2 inherits test { File["test"] { content +> template(''mytemplate3''), } } So, basically I want the inherited class to tack on another
2013 Nov 15
0
[qemu-upstream-unstable test] 21952: regressions - FAIL
...rashing.org> Benoit Canet <benoit@irqsave.net> Bharat Bhushan <bharat.bhushan@freescale.com> Bharata B Rao <bharata@linux.vnet.ibm.com> Blue Swirl <blauwirbel@gmail.com> Borislav Petkov <bp@suse.de> Brad Smith <brad@comstyle.com> Bruce Rogers <brogers@suse.com> Charles Arnold <carnold@suse.com> Chegu Vinod <chegu_vinod@hp.com> Chen Wei-Ren <chenwj@iis.sinica.edu.tw> Christian Borntraeger <borntraeger@de.ibm.com> Christoffer Dall <c.dall@virtualopensystems.com> Christoffer Dall <cdall@cs.columbia.ed...
2013 Nov 14
0
[qemu-upstream-unstable test] 21930: regressions - FAIL
...rashing.org> Benoit Canet <benoit@irqsave.net> Bharat Bhushan <bharat.bhushan@freescale.com> Bharata B Rao <bharata@linux.vnet.ibm.com> Blue Swirl <blauwirbel@gmail.com> Borislav Petkov <bp@suse.de> Brad Smith <brad@comstyle.com> Bruce Rogers <brogers@suse.com> Charles Arnold <carnold@suse.com> Chegu Vinod <chegu_vinod@hp.com> Chen Wei-Ren <chenwj@iis.sinica.edu.tw> Christian Borntraeger <borntraeger@de.ibm.com> Christoffer Dall <c.dall@virtualopensystems.com> Christoffer Dall <cdall@cs.columbia.ed...
2013 Nov 18
0
[qemu-upstream-unstable test] 21993: regressions - FAIL
...rashing.org> Benoit Canet <benoit@irqsave.net> Bharat Bhushan <bharat.bhushan@freescale.com> Bharata B Rao <bharata@linux.vnet.ibm.com> Blue Swirl <blauwirbel@gmail.com> Borislav Petkov <bp@suse.de> Brad Smith <brad@comstyle.com> Bruce Rogers <brogers@suse.com> Charles Arnold <carnold@suse.com> Chegu Vinod <chegu_vinod@hp.com> Chen Wei-Ren <chenwj@iis.sinica.edu.tw> Christian Borntraeger <borntraeger@de.ibm.com> Christoffer Dall <c.dall@virtualopensystems.com> Christoffer Dall <cdall@cs.columbia.ed...
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...<computersforpeace@gmail.com> Brian Uchino <buchino@cisco.com> Bruce Allan <bruce.w.allan@intel.com> Bruce Ashfield <bruce.ashfield@windriver.com> Bruce Beare <bruce.j.beare@intel.com> Bruce E. Robertson <bruce.e.robertson@intel.com> Bruce Rogers <brogers@suse.com> Bruce W Allan <bruce.w.allan@intel.com> Bruno Morelli <bruno@evidence.eu.com> Bruno Prémont <bonbons@linux-vserver.org> Bruno Randolf <br1@einfach.org> Bruno Thomsen <bruno.thomsen@gmail.com> Bruno Wolff III <bruno@wolff.to> Bryan Freed...