1. 28 5月, 2010 5 次提交
  2. 26 5月, 2010 1 次提交
  3. 25 5月, 2010 3 次提交
  4. 22 5月, 2010 6 次提交
  5. 21 5月, 2010 1 次提交
  6. 20 5月, 2010 1 次提交
  7. 19 5月, 2010 20 次提交
  8. 18 5月, 2010 1 次提交
    • G
      serial167: Kill unused variables · f3c7f317
      Geert Uytterhoeven 提交于
      commits 638157bc ("serial167: prepare to push
      BKL down into drivers") and 4165fe4e ("tty:
      Fix up char drivers request_room usage") removed code without removing the
      corresponding variables:
      
      | drivers/char/serial167.c: In function 'cd2401_rx_interrupt':
      | drivers/char/serial167.c:630: warning: unused variable 'len'
      | drivers/char/serial167.c: In function 'cy_ioctl':
      | drivers/char/serial167.c:1531: warning: unused variable 'val'
      
      Remove the variables to kill the warnings.
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      f3c7f317
  9. 17 5月, 2010 2 次提交
    • A
      drivers: Push down BKL into various drivers · 55929332
      Arnd Bergmann 提交于
      These are the last remaining device drivers using
      the ->ioctl file operation in the drivers directory
      (except from v4l drivers).
      
      [fweisbec: drop i8k pushdown as it has been done from
      procfs pushdown branch already]
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NFrederic Weisbecker <fweisbec@gmail.com>
      55929332
    • F
      procfs: Push down the bkl from ioctl · d79b6f4d
      Frederic Weisbecker 提交于
      Push down the bkl from procfs's ioctl main handler to its users.
      Only three procfs users implement an ioctl (non unlocked) handler.
      Turn them into unlocked_ioctl and push down the Devil inside.
      
      v2: PDE(inode)->data doesn't need to be under bkl
      v3: And don't forget to git-add the result
      v4: Use wrappers to pushdown instead of an invasive and error prone
          handlers surgery.
      Signed-off-by: NFrederic Weisbecker <fweisbec@gmail.com>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
      Cc: Al Viro <viro@ZenIV.linux.org.uk>
      Cc: Alexey Dobriyan <adobriyan@gmail.com>
      d79b6f4d