aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2008-02-08 07:20:28 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-08 12:22:34 -0500
commit74bedc4d56211b30686c6f2f574bf6c6a9654887 (patch)
treece9e18f9f52c76a05c8a7ec91510da6041cca7e1 /include/linux/fs.h
parent9261303ab7589cda6a3b95f9f80c9063538dc335 (diff)
libfs: rename simple_attr_close to simple_attr_release
simple_attr_close implementes ->release so it should be named accordingly. Signed-off-by: Christoph Hellwig <hch@lst.de> Cc: <stefano.brivio@polimi.it> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Greg KH <greg@kroah.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index ebe996ac2589..1137a8828089 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2056,7 +2056,7 @@ static int __fops ## _open(struct inode *inode, struct file *file) \
2056static struct file_operations __fops = { \ 2056static struct file_operations __fops = { \
2057 .owner = THIS_MODULE, \ 2057 .owner = THIS_MODULE, \
2058 .open = __fops ## _open, \ 2058 .open = __fops ## _open, \
2059 .release = simple_attr_close, \ 2059 .release = simple_attr_release, \
2060 .read = simple_attr_read, \ 2060 .read = simple_attr_read, \
2061 .write = simple_attr_write, \ 2061 .write = simple_attr_write, \
2062}; 2062};
@@ -2070,7 +2070,7 @@ __simple_attr_check_format(const char *fmt, ...)
2070int simple_attr_open(struct inode *inode, struct file *file, 2070int simple_attr_open(struct inode *inode, struct file *file,
2071 int (*get)(void *, u64 *), int (*set)(void *, u64), 2071 int (*get)(void *, u64 *), int (*set)(void *, u64),
2072 const char *fmt); 2072 const char *fmt);
2073int simple_attr_close(struct inode *inode, struct file *file); 2073int simple_attr_release(struct inode *inode, struct file *file);
2074ssize_t simple_attr_read(struct file *file, char __user *buf, 2074ssize_t simple_attr_read(struct file *file, char __user *buf,
2075 size_t len, loff_t *ppos); 2075 size_t len, loff_t *ppos);
2076ssize_t simple_attr_write(struct file *file, const char __user *buf, 2076ssize_t simple_attr_write(struct file *file, const char __user *buf,