1. 27 4月, 2007 14 次提交
  2. 24 4月, 2007 2 次提交
  3. 21 4月, 2007 4 次提交
  4. 18 4月, 2007 2 次提交
  5. 16 4月, 2007 1 次提交
  6. 15 4月, 2007 3 次提交
  7. 13 4月, 2007 2 次提交
  8. 09 4月, 2007 1 次提交
  9. 05 4月, 2007 1 次提交
  10. 03 4月, 2007 4 次提交
  11. 29 3月, 2007 3 次提交
  12. 28 3月, 2007 3 次提交
    • Z
      [PATCH] aio: remove bare user-triggerable error printk · 28defbea
      Zach Brown 提交于
      The user can generate console output if they cause do_mmap() to fail
      during sys_io_setup().  This was seen in a regression test that does
      exactly that by spinning calling mmap() until it gets -ENOMEM before
      calling io_setup().
      
      We don't need this printk at all, just remove it.
      Signed-off-by: NZach Brown <zach.brown@oracle.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      28defbea
    • J
      [PATCH] wext: Add missing ioctls to 64<->32 conversion · ed4bb106
      Jean Tourrilhes 提交于
       	Johannes Berg and Michael Buesch noticed that the WPA ioctls
      were missing from the 64<->32 bit conversion. This means that when
      using a 32 bits userspace on a 64 bit kernel, those ioctls fail.
      Signed-off-by: NJean Tourrilhes <jt@hpl.hp.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      ed4bb106
    • M
      [PATCH] Fix kernel build with EMBEDDED & PROC_FS & !PROC_SYSCTL · 5c46010a
      Mika Kukkonen 提交于
      Without attached patch against current -git I get following with
      !PROC_SYSCTL (with EMBEDDED and PROC_FS set):
      
          CC      init/version.o
          LD      init/built-in.o
          LD      vmlinux
        fs/built-in.o: In function `do_proc_sys_lookup':
        proc_sysctl.c:(.text+0x26583): undefined reference to `sysctl_head_next'
        fs/built-in.o: In function `proc_sys_revalidate':
        proc_sysctl.c:(.text+0x265bb): undefined reference to `sysctl_head_finish'
        fs/built-in.o: In function `proc_sys_readdir':
        proc_sysctl.c:(.text+0x26720): undefined reference to `sysctl_head_next'
        proc_sysctl.c:(.text+0x267d8): undefined reference to `sysctl_head_finish'
        proc_sysctl.c:(.text+0x268e7): undefined reference to `sysctl_head_next'
        proc_sysctl.c:(.text+0x26910): undefined reference to `sysctl_head_finish'
        fs/built-in.o: In function `proc_sys_write':
        proc_sysctl.c:(.text+0x2695d): undefined reference to `sysctl_perm'
        proc_sysctl.c:(.text+0x2699c): undefined reference to `sysctl_head_finish'
        fs/built-in.o: In function `proc_sys_read':
        proc_sysctl.c:(.text+0x269e9): undefined reference to `sysctl_perm'
        proc_sysctl.c:(.text+0x26a25): undefined reference to `sysctl_head_finish'
        fs/built-in.o: In function `proc_sys_permission':
        proc_sysctl.c:(.text+0x26ad1): undefined reference to `sysctl_perm'
        proc_sysctl.c:(.text+0x26adb): undefined reference to `sysctl_head_finish'
        fs/built-in.o: In function `proc_sys_lookup':
        proc_sysctl.c:(.text+0x26b39): undefined reference to `sysctl_head_finish'
        make: *** [vmlinux] Virhe 1
      
      All those functions are in fs/proc/proc_sysctl.c, which has no CONFIG_
      #define's in it, so the patch makes the compilation of that file to depend
      on CONFIG_PROC_SYSCTL (the simplest choice).
      Acked-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      5c46010a