From: Jean Sacren <sakiwit@gmail.com>
To: Linux Filesystem Development list <linux-fsdevel@vger.kernel.org>
Subject: [PATCH 1/1] fs: Fix warning: 'autofs4_root_compat_ioctl' declared 'static' but never defined
Date: Wed, 25 Aug 2010 17:34:28 -0600 [thread overview]
Message-ID: <20100825233427.GA7007@mail.gmail.com> (raw)
In-Reply-To: <20100825233157.GA6999@mail.gmail.com>
warning: 'autofs4_root_compat_ioctl' declared 'static' but never defined
Fix the above warning by correctly preprocessing the declaration of
autofs4_root_compat_ioctl.
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
---
fs/autofs4/root.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c
index cb1bd38..87f22ae 100644
--- a/fs/autofs4/root.c
+++ b/fs/autofs4/root.c
@@ -28,7 +28,9 @@ static int autofs4_dir_unlink(struct inode *,struct dentry *);
static int autofs4_dir_rmdir(struct inode *,struct dentry *);
static int autofs4_dir_mkdir(struct inode *,struct dentry *,int);
static long autofs4_root_ioctl(struct file *,unsigned int,unsigned long);
+#ifdef CONFIG_COMPAT
static long autofs4_root_compat_ioctl(struct file *,unsigned int,unsigned long);
+#endif
static int autofs4_dir_open(struct inode *inode, struct file *file);
static struct dentry *autofs4_lookup(struct inode *,struct dentry *, struct nameidata *);
static void *autofs4_follow_link(struct dentry *, struct nameidata *);
--
1.7.1
prev parent reply other threads:[~2010-08-25 23:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-25 23:31 [PATCH 0/1] fs: Fix warning: 'autofs4_root_compat_ioctl' Jean Sacren
2010-08-25 23:34 ` Jean Sacren [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100825233427.GA7007@mail.gmail.com \
--to=sakiwit@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.