search for: 2012,6

Displaying 11 results from an estimated 11 matches for "2012,6".

Did you mean: 201,6
2013 Jun 20
2
[PATCH V2] ocfs2: need rollback when journal_access failed in ocfs2_orphan_add()
...om> Cc: Jie Liu <jeff.liu at oracle.com> --- fs/ocfs2/namei.c | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index f53471d..087c58b 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c @@ -2012,6 +2012,21 @@ static int ocfs2_orphan_add(struct ocfs2_super *osb, goto leave; } + /* + * We're going to journal the change of i_flags and i_orphaned_slot. + * It's safe anyway, though some callers may duplicate the journaling. + * Journaling within the func just make the logic lo...
2006 Oct 13
1
[PATCH] Extra Notifications
...eNotifyProc windowMoveNotify; WindowGrabNotifyProc windowGrabNotify; WindowUngrabNotifyProc windowUngrabNotify; + WindowMinimizeNotifyProc windowMinimizeNotify; + WindowUnminimizeNotifyProc windowUnminimizeNotify; WindowStateChangeNotifyProc windowStateChangeNotify; @@ -2012,6 +2030,18 @@ Bool focusWindow (CompWindow *w); void +windowCreateNotify (CompWindow *w); + +void +windowDestroyNotify (CompWindow *w); + +void +windowMapNotify (CompWindow *w); + +void +windowUnmapNotify (CompWindow *w); + +void windowResizeNotify (CompWindow *w); void @@ -2031,6 +2061,12...
2019 Jun 29
0
[libnbd PATCH 1/6] api: Add nbd_aio_in_flight
...poll in case issuing the command changes the +needed polling direction. Possible ways to do this include polling +for activity on a pipe-to-self, or using L<pthread_kill(3)> to send +a signal that is masked except during L<ppoll(2)>. =item C<LIBNBD_AIO_DIRECTION_WRITE> = 2 @@ -2012,6 +2018,22 @@ C<nbd_aio_command_completed> to actually retire the command and learn whether the command was successful."; }; + "aio_in_flight", { + default_call with + args = []; ret = RInt; + permitted_states = [ Connected; Closed; Dead ]; + (* XXX is_locked...
2012 Sep 04
2
[PATCH] valgrind: Support for ioctls used by Xen toolstack processes.
...insertions(+), 3 deletions(-) create mode 100644 coregrind/m_syswrap/priv_syswrap-xen.h create mode 100644 coregrind/m_syswrap/syswrap-xen.c create mode 100644 include/vki/vki-xen.h diff --git a/configure.in b/configure.in index b385aed..d94644c 100644 --- a/configure.in +++ b/configure.in @@ -2012,6 +2012,25 @@ AC_ARG_WITH(mpicc, ) AC_SUBST(MPI_CC) +#---------------------------------------------------------------------------- +# Xen checks +#---------------------------------------------------------------------------- +AC_ARG_ENABLE(xen, + [ --enable-xen Enable support f...
2019 Jun 29
19
[libnbd PATCH 0/6] new APIs: aio_in_flight, aio_FOO_notify
I still need to wire in the use of *_notify functions into nbdkit to prove whether it makes the code any faster or easier to maintain, but at least the added example shows one good use case for the new API. Eric Blake (6): api: Add nbd_aio_in_flight generator: Allow DEAD state actions to run generator: Allow Int64 in callbacks states: Prepare for aio notify callback api: Add new
2012 Jan 31
26
[PATCH 00/10] FLASK updates: MSI interrupts, cleanups
This patch set adds XSM security labels to useful debugging output locations, and fixes some assumptions that all interrupts behaved like GSI interrupts (which had useful non-dynamic IDs). It also cleans up the policy build process and adds an example of how to use the user field in the security context. Debug output: [PATCH 01/10] xsm: Add security labels to event-channel dump [PATCH 02/10] xsm:
2003 Aug 22
3
PAE removal patch for testing
...tss_ss2 = GSEL(GDATA_SEL, SEL_KPL); -#ifdef PAE - dblfault_tss.tss_cr3 = (int)IdlePDPT - KERNBASE; -#else dblfault_tss.tss_cr3 = (int)IdlePTD; -#endif dblfault_tss.tss_eip = (int) dblfault_handler; dblfault_tss.tss_eflags = PSL_KERNEL; dblfault_tss.tss_ds = dblfault_tss.tss_es = @@ -2010,7 +2012,6 @@ vm86_initialize(); getmemsize(first); - pmap_bootstrap(first, 0); init_param2(physmem); /* now running on new page tables, configured,and u/iom is accessible */ @@ -2044,11 +2045,7 @@ /* setup proc 0's pcb */ proc0.p_addr->u_pcb.pcb_flags = 0; -#ifdef PAE - proc...
2018 Jul 16
11
[PATCH net-next V2 0/8] Packed virtqueue support for vhost
Hi all: This series implements packed virtqueues. The code were tested with Tiwei's guest driver series at https://patchwork.ozlabs.org/cover/942297/ Pktgen test for both RX and TX does not show obvious difference with split virtqueues. The main bottleneck is the guest Linux driver, since it can not stress vhost for a 100% CPU utilization. A full TCP benchmark is ongoing. Will test
2018 Jul 16
11
[PATCH net-next V2 0/8] Packed virtqueue support for vhost
Hi all: This series implements packed virtqueues. The code were tested with Tiwei's guest driver series at https://patchwork.ozlabs.org/cover/942297/ Pktgen test for both RX and TX does not show obvious difference with split virtqueues. The main bottleneck is the guest Linux driver, since it can not stress vhost for a 100% CPU utilization. A full TCP benchmark is ongoing. Will test
2018 Jul 03
12
[PATCH net-next 0/8] Packed virtqueue for vhost
Hi all: This series implements packed virtqueues. The code were tested with Tiwei's RFC V6 at https://lkml.org/lkml/2018/6/5/120. Pktgen test for both RX and TX does not show obvious difference with split virtqueues. The main bottleneck is the guest Linux driver, since it can not stress vhost for a 100% CPU utilization. A full TCP benchmark is ongoing. Will test virtio-net pmd as well when
2018 Jul 03
12
[PATCH net-next 0/8] Packed virtqueue for vhost
Hi all: This series implements packed virtqueues. The code were tested with Tiwei's RFC V6 at https://lkml.org/lkml/2018/6/5/120. Pktgen test for both RX and TX does not show obvious difference with split virtqueues. The main bottleneck is the guest Linux driver, since it can not stress vhost for a 100% CPU utilization. A full TCP benchmark is ongoing. Will test virtio-net pmd as well when