[<prev] [next>] [day] [month] [year] [list]
Message-Id: <8c4daf1769bb2e02e4b8e0027a10ad55d947b735.1493796421.git.geliangtang@gmail.com>
Date: Sat, 6 May 2017 23:36:16 +0800
From: Geliang Tang <geliangtang@...il.com>
To: Jeff Layton <jlayton@...chiereds.net>,
"J. Bruce Fields" <bfields@...ldses.org>,
Al Viro <viro@...iv.linux.org.uk>
Cc: Geliang Tang <geliangtang@...il.com>,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] fs: set no_llseek in DEFINE_SIMPLE_ATTRIBUTE
In DEFINE_SIMPLE_ATTRIBUTE() macro, since we use nonseekable_open() to
open, we should use no_llseek() to seek, not generic_file_llseek().
Signed-off-by: Geliang Tang <geliangtang@...il.com>
---
include/linux/fs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 9ea93c6..8762287 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -3117,7 +3117,7 @@ static const struct file_operations __fops = { \
.release = simple_attr_release, \
.read = simple_attr_read, \
.write = simple_attr_write, \
- .llseek = generic_file_llseek, \
+ .llseek = no_llseek, \
}
static inline __printf(1, 2)
--
2.9.3
Powered by blists - more mailing lists