1. 18 4月, 2009 1 次提交
  2. 12 4月, 2009 2 次提交
  3. 08 4月, 2009 1 次提交
  4. 25 3月, 2009 1 次提交
  5. 16 3月, 2009 1 次提交
    • J
      Rationalize fasync return values · 60aa4924
      Jonathan Corbet 提交于
      Most fasync implementations do something like:
      
           return fasync_helper(...);
      
      But fasync_helper() will return a positive value at times - a feature used
      in at least one place.  Thus, a number of other drivers do:
      
           err = fasync_helper(...);
           if (err < 0)
                   return err;
           return 0;
      
      In the interests of consistency and more concise code, it makes sense to
      map positive return values onto zero where ->fasync() is called.
      
      Cc: Al Viro <viro@ZenIV.linux.org.uk>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      60aa4924
  6. 02 2月, 2009 1 次提交
  7. 30 1月, 2009 1 次提交
  8. 06 1月, 2009 1 次提交
  9. 30 12月, 2008 1 次提交
  10. 20 12月, 2008 1 次提交
  11. 27 11月, 2008 1 次提交
  12. 25 11月, 2008 1 次提交
  13. 20 11月, 2008 1 次提交
  14. 12 11月, 2008 1 次提交
  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 1 次提交
  17. 28 10月, 2008 1 次提交
  18. 17 10月, 2008 1 次提交
  19. 15 10月, 2008 1 次提交
  20. 14 10月, 2008 1 次提交
  21. 23 9月, 2008 1 次提交
  22. 11 9月, 2008 1 次提交
  23. 05 9月, 2008 1 次提交
  24. 31 8月, 2008 1 次提交
  25. 12 8月, 2008 1 次提交
  26. 11 8月, 2008 1 次提交
  27. 07 8月, 2008 3 次提交
  28. 06 8月, 2008 1 次提交
  29. 26 7月, 2008 1 次提交
  30. 24 7月, 2008 2 次提交
  31. 21 7月, 2008 1 次提交
    • A
      tty: Ldisc revamp · a352def2
      Alan Cox 提交于
      Move the line disciplines towards a conventional ->ops arrangement.  For
      the moment the actual 'tty_ldisc' struct in the tty is kept as part of
      the tty struct but this can then be changed if it turns out that when it
      all settles down we want to refcount ldiscs separately to the tty.
      
      Pull the ldisc code out of /proc and put it with our ldisc code.
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      a352def2
  32. 19 7月, 2008 2 次提交
  33. 08 7月, 2008 1 次提交
  34. 07 7月, 2008 2 次提交