Rationalize fasync return values
authorJonathan Corbet <corbet@lwn.net>
Sun, 1 Feb 2009 21:52:56 +0000 (14:52 -0700)
committerJonathan Corbet <corbet@lwn.net>
Mon, 16 Mar 2009 14:34:35 +0000 (08:34 -0600)
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: Jonathan Corbet <corbet@lwn.net>

No differences found