]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ext4: fix a warning from sparse check for ext4_dir_llseek
authorZheng Liu <wenqing.lz@taobao.com>
Sat, 2 Mar 2013 22:24:05 +0000 (17:24 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 2 Mar 2013 22:24:05 +0000 (17:24 -0500)
ext4_dir_llseek is only used as a callback function, and no one calls
it directly.  So make it as a static function in order to remove a
warning message from sparse check.

Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/dir.c

index 3882fbc5e21554b8cac67831ed381f5e7b63c6fd..b8eeaf15b034ddff48f3a1b694a04dd780c217e8 100644 (file)
@@ -334,7 +334,7 @@ static inline loff_t ext4_get_htree_eof(struct file *filp)
  *
  * For non-htree, ext4_llseek already chooses the proper max offset.
  */
-loff_t ext4_dir_llseek(struct file *file, loff_t offset, int whence)
+static loff_t ext4_dir_llseek(struct file *file, loff_t offset, int whence)
 {
        struct inode *inode = file->f_mapping->host;
        int dx_dir = is_dx_dir(inode);