1. 28 3月, 2009 7 次提交
  2. 25 3月, 2009 1 次提交
  3. 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
  4. 12 3月, 2009 2 次提交
  5. 11 3月, 2009 7 次提交
  6. 04 3月, 2009 1 次提交
  7. 03 3月, 2009 4 次提交
  8. 25 2月, 2009 9 次提交
  9. 24 2月, 2009 2 次提交
  10. 23 2月, 2009 6 次提交