1. 13 1月, 2009 1 次提交
    • U
      Input: corgikbd - mark probe function as __devinit · f2d8dc75
      Uwe Kleine-König 提交于
      A pointer to corgikbd_probe is passed to the core via
      platform_driver_register and so the function must not disappear when the
      .init sections are discarded.  Otherwise (if also having HOTPLUG=y)
      unbinding and binding a device to the driver via sysfs will result in an
      oops as does a device being registered late.
      
      An alternative to this patch is using platform_driver_probe instead of
      platform_driver_register plus removing the pointer to the probe function
      from the struct platform_driver.
      
      [dtor@mail.ru: fixed some more section markups]
      Signed-off-by: NUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      f2d8dc75
  2. 11 1月, 2009 3 次提交
  3. 06 1月, 2009 1 次提交
  4. 30 12月, 2008 4 次提交
  5. 29 12月, 2008 2 次提交
  6. 23 12月, 2008 2 次提交
  7. 21 12月, 2008 1 次提交
  8. 20 12月, 2008 5 次提交
  9. 01 12月, 2008 2 次提交
  10. 26 11月, 2008 1 次提交
  11. 25 11月, 2008 3 次提交
  12. 21 11月, 2008 1 次提交
  13. 20 11月, 2008 4 次提交
  14. 12 11月, 2008 5 次提交
  15. 02 11月, 2008 1 次提交
    • A
      saner FASYNC handling on file close · 233e70f4
      Al Viro 提交于
      As it is, all instances of ->release() for files that have ->fasync()
      need to remember to evict file from fasync lists; forgetting that
      creates a hole and we actually have a bunch that *does* forget.
      
      So let's keep our lives simple - let __fput() check FASYNC in
      file->f_flags and call ->fasync() there if it's been set.  And lose that
      crap in ->release() instances - leaving it there is still valid, but we
      don't have to bother anymore.
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      233e70f4
  16. 30 10月, 2008 2 次提交
  17. 29 10月, 2008 2 次提交