linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH v3] Remove #ifdef CONFIG_* from all userspace headers
           [not found] <1441832902-28993-1-git-send-email-palmer@dabbelt.com>
           [not found] ` <1441832902-28993-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    @ 2015-09-14 22:50 ` Palmer Dabbelt
      2015-09-14 22:50 ` Palmer Dabbelt
      2015-09-14 22:50 ` Palmer Dabbelt
      3 siblings, 0 replies; 233+ messages in thread
    From: Palmer Dabbelt @ 2015-09-14 22:50 UTC (permalink / raw)
      To: arnd, dhowells
      Cc: viro, ast, aishchuk, aarcange, akpm, luto, acme, bhe, 3chas3,
    	chris, dave, dyoung, drysdale, davem, ebiederm, geoff, gregkh,
    	hpa, mingo, iulia.manda21, plagnioj, jikos, josh, kexec,
    	linux-api, linux-arch, linux-fsdevel, linux-kernel, linux-xtensa,
    	mathieu.desnoyers, jcmvbkbc, paulmck, a.p.zijlstra, tglx,
    	tomi.valkeinen, vgoyal, x86
    
    This patch set used to be called "[PATCH] Remove #ifdef CONFIG_64BIT
    from all asm-generic/fcntl.h".
    
    This is version 3 of the patch set.  I think things are kind of
    cleaning up, but there's still some questions I have:
    
     * #4 might be dangerous, but I think this is the best way to do it
       because otherwise arch maintainers will have to #define this to
       something.  Since Xtensa already had exactly the same bug as the
       asm-generic header did, I think it'd be best to avoid those if
       possible.
    
       I'm OK changing this to define the value to 0 by default (though
       thinking now, I think it'd be better to not define it by default),
       since most kernels aren't going to have MAP_UNINITIALIZED do
       anything anyway.
    
     * #5 is big and I don't really understand what's going on, so it's
       probably broken somewhere.
    
    Also, there's some checkpatch warnings that I purposely haven't fixed:
    
     * In #5, there's a checkpatch.pl complaint about same-line struct
       braces.  I've left that in to match the rest of the file, but I can
       also fix all of them if that would be better.
    
     * In #10, there's a checkpatch.pl complaint about a split printk
       format string, but that was there before and I don't see a way to
       make it a lot cleaner, so I'm leaving it alone.
    
     * In #13, there's two checkpatch.pl complains.  One is about block
       comments that is bogus, and one is about long lines but there's
       more of those so I think it's OK.
    
    Thanks to everyone who looked at v2!
    
    
    
    
    Changes since v2 (<1441832902-28993-1-git-send-email-palmer@dabbelt.com>)
    
    * Patch set renamed.
    
    * #2 is rewritten to use sys_ni.c instead of an #ifdef
    
    * #3, #6, #8, #9, #10, and #11 no longer use "#ifdef __KERNEL__" but
       have instead moved the offending lines to the correct, kernel-only
       files.
    
    * #4 has been rewritten to always define MAP_UNINITIALIZED to
       non-zero, rather than defining it to zero when in userspace.
    
    * #5 got a whole lot longer -- rather than just always hiding these
       fields from userspace, there is now a second "struct
       elf_fdpic_prstatus" structure.  This should allow userspace to
       parse core dumps correctly.
    
    * Rebased onto 9c488de24f7264f08d341024bffdd637b4d04c96.
    
    Changes since v1 (<1441152610-22566-1-git-send-email-palmer@dabbelt.com>)
    
    * All patches but #1 were added.
    
    
    ^ permalink raw reply	[flat|nested] 233+ messages in thread
  • * [PATCH v3] Remove #ifdef CONFIG_* from all userspace headers
           [not found] <1441832902-28993-1-git-send-email-palmer@dabbelt.com>
           [not found] ` <1441832902-28993-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
      2015-09-14 22:50 ` Palmer Dabbelt
    @ 2015-09-14 22:50 ` Palmer Dabbelt
      2015-09-14 22:50 ` Palmer Dabbelt
      3 siblings, 0 replies; 233+ messages in thread
    From: Palmer Dabbelt @ 2015-09-14 22:50 UTC (permalink / raw)
      To: arnd, dhowells
      Cc: viro, ast, aishchuk, aarcange, akpm, luto, acme, bhe, 3chas3,
    	chris, dave, dyoung, drysdale, davem, ebiederm, geoff, gregkh,
    	hpa, mingo, iulia.manda21, plagnioj, jikos, josh, kexec,
    	linux-api, linux-arch, linux-fsdevel, linux-kernel, linux-xtensa,
    	mathieu.desnoyers, jcmvbkbc, paulmck, a.p.zijlstra, tglx,
    	tomi.valkeinen, vgoyal, x86
    
    This patch set used to be called "[PATCH] Remove #ifdef CONFIG_64BIT
    from all asm-generic/fcntl.h".
    
    This is version 3 of the patch set.  I think things are kind of
    cleaning up, but there's still some questions I have:
    
     * #4 might be dangerous, but I think this is the best way to do it
       because otherwise arch maintainers will have to #define this to
       something.  Since Xtensa already had exactly the same bug as the
       asm-generic header did, I think it'd be best to avoid those if
       possible.
    
       I'm OK changing this to define the value to 0 by default (though
       thinking now, I think it'd be better to not define it by default),
       since most kernels aren't going to have MAP_UNINITIALIZED do
       anything anyway.
    
     * #5 is big and I don't really understand what's going on, so it's
       probably broken somewhere.
    
    Also, there's some checkpatch warnings that I purposely haven't fixed:
    
     * In #5, there's a checkpatch.pl complaint about same-line struct
       braces.  I've left that in to match the rest of the file, but I can
       also fix all of them if that would be better.
    
     * In #10, there's a checkpatch.pl complaint about a split printk
       format string, but that was there before and I don't see a way to
       make it a lot cleaner, so I'm leaving it alone.
    
     * In #13, there's two checkpatch.pl complains.  One is about block
       comments that is bogus, and one is about long lines but there's
       more of those so I think it's OK.
    
    Thanks to everyone who looked at v2!
    
    
    
    
    Changes since v2 (<1441832902-28993-1-git-send-email-palmer@dabbelt.com>)
    
    * Patch set renamed.
    
    * #2 is rewritten to use sys_ni.c instead of an #ifdef
    
    * #3, #6, #8, #9, #10, and #11 no longer use "#ifdef __KERNEL__" but
       have instead moved the offending lines to the correct, kernel-only
       files.
    
    * #4 has been rewritten to always define MAP_UNINITIALIZED to
       non-zero, rather than defining it to zero when in userspace.
    
    * #5 got a whole lot longer -- rather than just always hiding these
       fields from userspace, there is now a second "struct
       elf_fdpic_prstatus" structure.  This should allow userspace to
       parse core dumps correctly.
    
    * Rebased onto 9c488de24f7264f08d341024bffdd637b4d04c96.
    
    Changes since v1 (<1441152610-22566-1-git-send-email-palmer@dabbelt.com>)
    
    * All patches but #1 were added.
    
    ^ permalink raw reply	[flat|nested] 233+ messages in thread
  • * [PATCH v3] Remove #ifdef CONFIG_* from all userspace headers
           [not found] <1441832902-28993-1-git-send-email-palmer@dabbelt.com>
                       ` (2 preceding siblings ...)
      2015-09-14 22:50 ` Palmer Dabbelt
    @ 2015-09-14 22:50 ` Palmer Dabbelt
      2015-09-14 22:50   ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
                         ` (44 more replies)
      3 siblings, 45 replies; 233+ messages in thread
    From: Palmer Dabbelt @ 2015-09-14 22:50 UTC (permalink / raw)
      To: arnd, dhowells
      Cc: viro, ast, aishchuk, aarcange, akpm, luto, acme, bhe, 3chas3,
    	chris, dave, dyoung, drysdale, davem, ebiederm, geoff, gregkh,
    	hpa, mingo, iulia.manda21, plagnioj, jikos, josh, kexec,
    	linux-api, linux-arch, linux-fsdevel, linux-kernel, linux-xtensa,
    	mathieu.desnoyers, jcmvbkbc, paulmck, a.p.zijlstra, tglx,
    	tomi.valkeinen, vgoyal, x86
    
    This patch set used to be called "[PATCH] Remove #ifdef CONFIG_64BIT
    from all asm-generic/fcntl.h".
    
    This is version 3 of the patch set.  I think things are kind of
    cleaning up, but there's still some questions I have:
    
     * #4 might be dangerous, but I think this is the best way to do it
       because otherwise arch maintainers will have to #define this to
       something.  Since Xtensa already had exactly the same bug as the
       asm-generic header did, I think it'd be best to avoid those if
       possible.
    
       I'm OK changing this to define the value to 0 by default (though
       thinking now, I think it'd be better to not define it by default),
       since most kernels aren't going to have MAP_UNINITIALIZED do
       anything anyway.
    
     * #5 is big and I don't really understand what's going on, so it's
       probably broken somewhere.
    
    Also, there's some checkpatch warnings that I purposely haven't fixed:
    
     * In #5, there's a checkpatch.pl complaint about same-line struct
       braces.  I've left that in to match the rest of the file, but I can
       also fix all of them if that would be better.
    
     * In #10, there's a checkpatch.pl complaint about a split printk
       format string, but that was there before and I don't see a way to
       make it a lot cleaner, so I'm leaving it alone.
    
     * In #13, there's two checkpatch.pl complains.  One is about block
       comments that is bogus, and one is about long lines but there's
       more of those so I think it's OK.
    
    Thanks to everyone who looked at v2!
    
    
    
    
    Changes since v2 (<1441832902-28993-1-git-send-email-palmer@dabbelt.com>)
    
    * Patch set renamed.
    
    * #2 is rewritten to use sys_ni.c instead of an #ifdef
    
    * #3, #6, #8, #9, #10, and #11 no longer use "#ifdef __KERNEL__" but
       have instead moved the offending lines to the correct, kernel-only
       files.
    
    * #4 has been rewritten to always define MAP_UNINITIALIZED to
       non-zero, rather than defining it to zero when in userspace.
    
    * #5 got a whole lot longer -- rather than just always hiding these
       fields from userspace, there is now a second "struct
       elf_fdpic_prstatus" structure.  This should allow userspace to
       parse core dumps correctly.
    
    * Rebased onto 9c488de24f7264f08d341024bffdd637b4d04c96.
    
    Changes since v1 (<1441152610-22566-1-git-send-email-palmer@dabbelt.com>)
    
    * All patches but #1 were added.
    
    ^ permalink raw reply	[flat|nested] 233+ messages in thread

  • end of thread, other threads:[~2023-02-10 15:35 UTC | newest]
    
    Thread overview: 233+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1441832902-28993-1-git-send-email-palmer@dabbelt.com>
         [not found] ` <1441832902-28993-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    2015-09-14 22:50   ` [PATCH v3] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50 ` Palmer Dabbelt
    2015-09-14 22:50 ` Palmer Dabbelt
    2015-09-14 22:50 ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-15  0:23     ` Kirill A. Shutemov
    2015-09-15  0:52       ` Palmer Dabbelt
         [not found]       ` <20150915002358.GA12618-nhfs4B5ZimeFUdmeq17FyvUpdFzICT1y@public.gmane.org>
    2015-09-15  0:52         ` Palmer Dabbelt
    2015-09-15  0:52         ` Palmer Dabbelt
    2015-09-15  5:19         ` Josh Triplett
    2015-09-15  9:42           ` Kirill A. Shutemov
    2015-09-15 14:07             ` Josh Triplett
    2015-09-17 10:13             ` David Howells
    2015-09-15  0:52       ` Palmer Dabbelt
    2015-09-15  0:52       ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-15  8:06     ` Peter Zijlstra
    2015-09-15 18:40       ` Palmer Dabbelt
    2015-09-15 19:39         ` Peter Zijlstra
         [not found]           ` <20150915193910.GH16853-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
    2015-09-17  3:56             ` Palmer Dabbelt
    2015-09-15 21:15       ` Arnd Bergmann
    2015-09-24 12:15         ` Frederic Weisbecker
    2015-09-17 10:28       ` David Howells
    2015-09-14 22:50   ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 11/13] Always define MAX_RAW_MINORS as 65535 in userspace Palmer Dabbelt
         [not found]     ` <1442271047-4908-12-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    2015-09-15 20:42       ` H. Peter Anvin
    2015-09-17  3:08         ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
         [not found]   ` <1442271047-4908-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    2015-09-14 22:50     ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 11/13] Always define MAX_RAW_MINORS as 65535 in userspace Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-09-14 22:50     ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
    2015-09-14 22:50     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH v4] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-14 22:50   ` Palmer Dabbelt
    2015-09-17  9:57   ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c David Howells
    2015-09-17 20:53     ` Palmer Dabbelt
    2015-09-17 10:17   ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" David Howells
    2015-11-03 19:46   ` [PATCH v4] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
         [not found]     ` <1446579994-9937-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    2015-11-03 19:46       ` [PATCH 01/13] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 02/13] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 03/13] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 04/13] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 05/13] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 06/13] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 07/13] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 11/13] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-03 19:46       ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
    2015-11-03 19:46       ` Palmer Dabbelt
    2015-11-10  1:30       ` [PATCH v5] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 08/13] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 09/13] Move bp_type_idx to kernel/event/hw_breakpoint.c Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
         [not found]       ` <1446579994-9937-10-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    2015-11-03 21:28         ` kbuild test robot
    2015-11-03 21:29       ` kbuild test robot
    2015-11-04 11:41       ` Peter Zijlstra
         [not found]         ` <20151104114106.GJ17308-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
    2015-11-04 12:21           ` Peter Zijlstra
         [not found]             ` <20151104122151.GB11639-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
    2015-11-07  6:44               ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 10/13] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 11/13] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 20:11       ` kbuild test robot
    2015-11-03 19:46     ` [PATCH 12/13] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 19:46     ` [PATCH 13/13] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-03 20:25       ` kbuild test robot
    2015-11-03 20:26       ` kbuild test robot
    2015-11-03 19:46     ` Palmer Dabbelt
    2015-11-10  1:30     ` [PATCH v5] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
    2015-11-10  1:30     ` Palmer Dabbelt
    2015-11-10  1:30       ` [PATCH 01/14] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
    2015-11-10  1:30       ` Palmer Dabbelt
    2015-11-10  1:30       ` Palmer Dabbelt
    2015-11-10  1:30       ` [PATCH 02/14] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
    2015-11-10  1:30       ` Palmer Dabbelt
    2015-11-10  1:30       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 03/14] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2023-02-10 14:55         ` Thomas Huth
    2023-02-10 15:10           ` Arnd Bergmann
    2015-11-10  1:31       ` [PATCH 04/14] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
         [not found]       ` <1447119071-19392-1-git-send-email-palmer-96lFi9zoCfxBDgjK7y7TUQ@public.gmane.org>
    2015-11-10  1:30         ` [PATCH 01/14] Remove #ifdef CONFIG_64BIT from all asm-generic/fcntl.h Palmer Dabbelt
    2015-11-10  1:30         ` [PATCH 02/14] Use sys_ni.c instead of #ifdef to disable fork on CONFIG_NOMMU Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 03/14] Move COMPAT_ATM_ADDPARTY to net/atm/svc.c Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 04/14] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 05/14] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 06/14] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 07/14] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 08/14] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 09/14] Move bp_type_idx to include/linux/hw_breakpoint.h Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 10/14] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 11/14] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 12/14] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 13/14] Hide CONFIG_PHY_RAM_BASE_ADDRESS from userspace Palmer Dabbelt
    2015-11-10  1:31         ` [PATCH 14/14] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 04/14] Always expose MAP_UNINITIALIZED to userspace Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 05/14] Split FDPIC "struct elf_prstatus" to "struct elf_fdpic_prstatus" Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 06/14] Move ep_take_care_of_epollwakeup() to fs/eventpoll.c Palmer Dabbelt
    2023-02-10 14:45         ` Thomas Huth
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 07/14] Make FB_BACKLIGHT_{LEVELS,MAX} always visible Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 08/14] Move MAX_SHARED_LIBS to fs/binfmt_flat.c Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 09/14] Move bp_type_idx to include/linux/hw_breakpoint.h Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 10/14] Move USE_WCACHING to drivers/block/pktcdvd.c Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 11/14] Always define MAX_RAW_MINORS as 2**20 in userspace Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 12/14] Remove AT_VECTOR_SIZE_ARCH on x86 Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 13/14] Hide CONFIG_PHY_RAM_BASE_ADDRESS from userspace Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` [PATCH 14/14] Re-enable and clean up "check_config()" in headers_check.pl Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:31       ` Palmer Dabbelt
    2015-11-10  1:30     ` [PATCH v5] Remove #ifdef CONFIG_* from all userspace headers Palmer Dabbelt
    2015-11-03 19:46   ` [PATCH v4] " Palmer Dabbelt
    2015-11-03 19:46   ` Palmer Dabbelt
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).