Re: [PATCH] [2/11] Add unlocked_fasync

From: Randy Dunlap
Date: Mon May 19 2008 - 13:29:55 EST


On Mon, 19 May 2008 14:31:11 +0200 (CEST) Andi Kleen wrote:

> Index: linux/Documentation/filesystems/vfs.txt
> ===================================================================
> --- linux.orig/Documentation/filesystems/vfs.txt
> +++ linux/Documentation/filesystems/vfs.txt
> @@ -755,6 +755,7 @@ struct file_operations {
> int (*fsync) (struct file *, struct dentry *, int datasync);
> int (*aio_fsync) (struct kiocb *, int datasync);
> int (*fasync) (int, struct file *, int);
> + int (*unlocked_fasync) (int, struct file *, int);
> int (*lock) (struct file *, int, struct file_lock *);
> ssize_t (*readv) (struct file *, const struct iovec *, unsigned long, loff_t *);
> ssize_t (*writev) (struct file *, const struct iovec *, unsigned long, loff_t *);
> @@ -814,7 +815,9 @@ otherwise noted.
> fsync: called by the fsync(2) system call
>
> fasync: called by the fcntl(2) system call when asynchronous
> - (non-blocking) mode is enabled for a file
> + (non-blocking) mode is enabled for a file. BKL hold

? BKL is held.

> +
> + unlocked_fasync: like fasync, but without BKL
>
> lock: called by the fcntl(2) system call for F_GETLK, F_SETLK, and F_SETLKW
> commands


---
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/