search for: 334,10

Displaying 18 results from an estimated 18 matches for "334,10".

Did you mean: 332,10
2012 Feb 15
2
[PATCH] isohybrid: Generate MBR even when in EFI mode
...if (entry < 1 || entry > 4) errx(1, "invalid entry: `%s', 1 <= entry <= 4", optarg); + if (mode & MAC || mode & EFI) + errx(1, "setting an entry is unsupported with EFI or Mac"); break; case 'o': @@ -334,10 +336,14 @@ check_option(int argc, char *argv[]) case 'u': mode |= EFI; + if (entry) + errx(1, "setting an entry is unsupported with EFI or Mac"); break; case 'm': mode |= MAC; + if (entry) + errx(1, "setting an entry is unsupport...
2016 May 20
1
[PATCH] protocol: Ignore rest of option when replying with error
...we don't happen to service that option. Signed-off-by: Eric Blake <eblake@redhat.com> --- src/connections.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/connections.c b/src/connections.c index 0c93f35..840e315 100644 --- a/src/connections.c +++ b/src/connections.c @@ -334,6 +334,10 @@ _negotiate_handshake_newstyle_options (struct connection *conn) if (send_newstyle_option_reply (conn, option, NBD_REP_ERR_INVALID) == -1) return -1; + if (xread (conn->sockin, data, optlen) == -1) { + nbdkit_error ("read: %m&quot...
2007 Jun 07
1
[PATCH] fixes for >=libwnck-2.19.3
...[have_libwnck_2_18_1=yes], [have_libwnck_2_18_1=no]) + PKG_CHECK_EXISTS(libwnck-1.0 >= 2.19.3, + [have_libwnck_2_19_3=yes], [have_libwnck_2_19_3=no]) if test "x$use_metacity" = "xyes"; then PKG_CHECK_MODULES(METACITY, libmetacity-private, @@ -332,6 +334,10 @@ AC_DEFINE(HAVE_LIBWNCK_2_18_1, 1, [Define to 1 if libwnck version >= 2_18_1]) fi + if test "$have_libwnck_2_19_3" = yes; then + AC_DEFINE(HAVE_LIBWNCK_2_19_3, 1, + [Define to 1 if libwnck version >= 2_19_3]) + fi fi AM_CONDITIONAL(USE_METACITY, t...
2019 Sep 11
1
[PATCH v4 2/2] drm/virtio: Use vmalloc for command buffer allocations.
...* to wait for free space, which can result in fence ids being * submitted out-of-order. */ - if (vq->num_free < 3) { + if (vq->num_free < 2 + outcnt) { spin_unlock(&vgdev->ctrlq.qlock); wait_event(vgdev->ctrlq.ack_queue, vq->num_free >= 3); goto again; @@ -334,10 +391,15 @@ static void virtio_gpu_queue_fenced_ctrl_buffer(struct virtio_gpu_device *vgdev, virtio_gpu_array_unlock_resv(vbuf->objs); } } - notify = virtio_gpu_queue_ctrl_buffer_locked(vgdev, vbuf); + notify = virtio_gpu_queue_ctrl_buffer_locked(vgdev, vbuf, vout); spin_unlock(&amp...
2006 Mar 24
2
[PATCH] qemu pcnet emulation fixes
...((uint32_t *)rmd)[2] = 0; } } static inline void pcnet_rmd_store(PCNetState *s, struct pcnet_RMD *rmd, target_phys_addr_t addr) { + rmd->rmd1.own = 0; cpu_physical_memory_set_dirty(addr); if (!BCR_SWSTYLE(s)) { uint16_t rda[4]; \ @@ -319,13 +334,10 @@ static inline void pcnet_rmd_store(PCNet cpu_physical_memory_write(addr+8, (void *)&rmd->rmd2, 4); cpu_physical_memory_write(addr+4, (void *)&rmd->rmd1, 4); } else { - uint32_t rda[4]; + uint32_t rda[2]; rda[0...
2007 Oct 15
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c
...,7 @@ swfdec_text_field_render (SwfdecTextField *text, cairo_t *cr, layouts = swfdec_text_field_generate_layouts (text, cr, paragraphs, trans, inval, NULL); + first = TRUE; linenum = 0; x = SWFDEC_GRAPHIC (text)->extents.x0; y = SWFDEC_GRAPHIC (text)->extents.y0 + 1; @@ -334,10 +336,15 @@ swfdec_text_field_render (SwfdecTextField *text, cairo_t *cr, if (linenum == text->scroll) skipped = rect.y; - if (y + rect.y > limit.y1 || + if (!first && y + rect.y + rect.height > SWFDEC_GRAPHIC (text)->extents.y1) break; + firs...
2011 May 19
22
[PATCHv2 00/14] virtio and vhost-net performance enhancements
OK, here is the large patchset that implements the virtio spec update that I sent earlier (the spec itself needs a minor update, will send that out too next week, but I think we are on the same page here already). It supercedes the PUBLISH_USED_IDX patches I sent out earlier. What will follow will be a patchset that actually includes 4 sets of patches. I note below their status. Please consider
2011 May 19
22
[PATCHv2 00/14] virtio and vhost-net performance enhancements
OK, here is the large patchset that implements the virtio spec update that I sent earlier (the spec itself needs a minor update, will send that out too next week, but I think we are on the same page here already). It supercedes the PUBLISH_USED_IDX patches I sent out earlier. What will follow will be a patchset that actually includes 4 sets of patches. I note below their status. Please consider
2007 Apr 18
2
[PATCH] x86_64 paravirt_ops port
...rt.o + obj-y += topology.o obj-y += intel_cacheinfo.o Index: linux-2.6.19-quilt/arch/x86_64/kernel/process.c =================================================================== --- linux-2.6.19-quilt.orig/arch/x86_64/kernel/process.c +++ linux-2.6.19-quilt/arch/x86_64/kernel/process.c @@ -334,10 +334,10 @@ void __show_regs(struct pt_regs * regs) rdmsrl(MSR_GS_BASE, gs); rdmsrl(MSR_KERNEL_GS_BASE, shadowgs); - asm("movq %%cr0, %0": "=r" (cr0)); - asm("movq %%cr2, %0": "=r" (cr2)); - asm("movq %%cr3, %0": "=r" (cr3)); - a...
2007 Apr 18
2
[PATCH] x86_64 paravirt_ops port
...rt.o + obj-y += topology.o obj-y += intel_cacheinfo.o Index: linux-2.6.19-quilt/arch/x86_64/kernel/process.c =================================================================== --- linux-2.6.19-quilt.orig/arch/x86_64/kernel/process.c +++ linux-2.6.19-quilt/arch/x86_64/kernel/process.c @@ -334,10 +334,10 @@ void __show_regs(struct pt_regs * regs) rdmsrl(MSR_GS_BASE, gs); rdmsrl(MSR_KERNEL_GS_BASE, shadowgs); - asm("movq %%cr0, %0": "=r" (cr0)); - asm("movq %%cr2, %0": "=r" (cr2)); - asm("movq %%cr3, %0": "=r" (cr3)); - a...
2011 May 04
27
[PATCH 00/18] virtio and vhost-net performance enhancements
OK, here's a large patchset that implements the virtio spec update that I sent earlier. It supercedes the PUBLISH_USED_IDX patches I sent out earlier. I know it's a lot to ask but please test, and please consider for 2.6.40 :) I see nice performance improvements: one run showed going from 12 to 18 Gbit/s host to guest with netperf, but I did not spend a lot of time testing performance,
2011 May 04
27
[PATCH 00/18] virtio and vhost-net performance enhancements
OK, here's a large patchset that implements the virtio spec update that I sent earlier. It supercedes the PUBLISH_USED_IDX patches I sent out earlier. I know it's a lot to ask but please test, and please consider for 2.6.40 :) I see nice performance improvements: one run showed going from 12 to 18 Gbit/s host to guest with netperf, but I did not spend a lot of time testing performance,
2019 Aug 13
0
[PATCH libnbd] api: Rename nbd_aio_*_callback to nbd_aio_*.
...e_t count, uint64_t offset, - nbd_completion_callback completion, - void *user_data, - uint32_t flags) { struct command_cb cb = { .completion = completion, .user_data = user_data, }; @@ -362,16 +334,10 @@ nbd_unlocked_aio_pwrite_callback (struct nbd_handle *h, const void *buf, } int64_t -nbd_unlocked_aio_flush (struct nbd_handle *h, uint32_t flags) -{ - return nbd_unlocked_aio_flush_callback (h, NULL, NULL, flags); -} - -int64_t -nbd_unlocked_aio_flush_callback (struct nbd_handle *h, -...
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
...ir)..\..\win32\version.h" PACKAGE_VERSION</Command> - <Message>Generating version.h</Message> + <Command> + </Command> + <Message> + </Message> </PreBuildEvent> <CustomBuildStep> <Command> @@ -334,8 +338,10 @@ <GenerateDebugInformation>true</GenerateDebugInformation> </Link> <PreBuildEvent> - <Command>"$(ProjectDir)..\..\win32\genversion.bat" "$(ProjectDir)..\..\win32\version.h" PACKAGE_VERSION</Command> - &lt...
2019 Aug 13
2
[PATCH libnbd] api: Rename nbd_aio_*_callback to nbd_aio_*.
This applies on top of the OClosure v2 series posted a few minutes ago. Rich.
2012 Sep 30
2
rsync over NFSv4
Hi, my FreeBSD-9/stable machine (FreeBSD freebsd-tower.goebo.site 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #2 r241044M: Sat Sep 29 12:52:01 CEST 2012 lbo@freebsd-tower.goebo.site:/usr/obj/usr/src/sys/GENERIC i386) crashes reproducibly when rsync-ing files to an NFSv4 share on the FreeBSD machine. The crash makes the system reboot. The crash creates files in /var/crash which may be obtained
2008 Feb 29
35
[RFC] PVFB: Add refresh period to XenStore parameters?
Hello, Sometimes the backend of PVFB knows that it doesn''t need permanent refresh, when the window is minimized for instance (no refresh at all), or the administration tools know that the window is thumnailed, and so a slow refresh rate is fine. Also, some users may want to tune the refresh rate according to the smoothness they would like, balanced with the CPU time that requires.
2009 Apr 17
26
OCFS2 1.4: Patches backported from mainline
Please review the list of patches being applied to the ocfs2 1.4 tree. All patches list the mainline commit hash. Thanks Sunil