Rationalize fasync return values
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>
This commit is contained in:
@@ -1325,11 +1325,7 @@ static int dv1394_fasync(int fd, struct file *file, int on)
|
||||
|
||||
struct video_card *video = file_to_video_card(file);
|
||||
|
||||
int retval = fasync_helper(fd, file, on, &video->fasync);
|
||||
|
||||
if (retval < 0)
|
||||
return retval;
|
||||
return 0;
|
||||
return fasync_helper(fd, file, on, &video->fasync);
|
||||
}
|
||||
|
||||
static ssize_t dv1394_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
|
||||
|
Reference in New Issue
Block a user