aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-07-04 15:44:25 -0400
committerJan Kara <jack@suse.cz>2014-07-15 16:40:23 -0400
commit2c15ac5bdb0009645f1f5962086021daa6b52d3f (patch)
tree3d507d337afe1dcd853394d9f34142e049d72d30
parente973606cc27527324a34127a3a8cc85bbb25a391 (diff)
fs/quota: kernel-doc warning fixes
type and id were removed and qid added to quota_send_warning in commit 431f19744d15 ("userns: Convert quota netlink aka quota_send_warning") Cc: Jan Kara <jack@suse.cz> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r--fs/quota/kqid.c2
-rw-r--r--fs/quota/netlink.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/fs/quota/kqid.c b/fs/quota/kqid.c
index 2f97b0e2c501..ebc5e6285800 100644
--- a/fs/quota/kqid.c
+++ b/fs/quota/kqid.c
@@ -55,7 +55,7 @@ EXPORT_SYMBOL(qid_lt);
55/** 55/**
56 * from_kqid - Create a qid from a kqid user-namespace pair. 56 * from_kqid - Create a qid from a kqid user-namespace pair.
57 * @targ: The user namespace we want a qid in. 57 * @targ: The user namespace we want a qid in.
58 * @kuid: The kernel internal quota identifier to start with. 58 * @kqid: The kernel internal quota identifier to start with.
59 * 59 *
60 * Map @kqid into the user-namespace specified by @targ and 60 * Map @kqid into the user-namespace specified by @targ and
61 * return the resulting qid. 61 * return the resulting qid.
diff --git a/fs/quota/netlink.c b/fs/quota/netlink.c
index 72d29177998e..bb2869f5dfd8 100644
--- a/fs/quota/netlink.c
+++ b/fs/quota/netlink.c
@@ -32,8 +32,7 @@ static struct genl_family quota_genl_family = {
32 32
33/** 33/**
34 * quota_send_warning - Send warning to userspace about exceeded quota 34 * quota_send_warning - Send warning to userspace about exceeded quota
35 * @type: The quota type: USRQQUOTA, GRPQUOTA,... 35 * @qid: The kernel internal quota identifier.
36 * @id: The user or group id of the quota that was exceeded
37 * @dev: The device on which the fs is mounted (sb->s_dev) 36 * @dev: The device on which the fs is mounted (sb->s_dev)
38 * @warntype: The type of the warning: QUOTA_NL_... 37 * @warntype: The type of the warning: QUOTA_NL_...
39 * 38 *