From: akpm@linux-foundation.org
To: penght@cn.fujitsu.com, eparis@redhat.com,
viro@zeniv.linux.org.uk, mm-commits@vger.kernel.org
Subject: - kernel-auditc-nlh-nlmsg_type-is-gotten-more-than-once.patch removed from -mm tree
Date: Wed, 02 Jul 2008 00:46:59 -0700 [thread overview]
Message-ID: <200807020746.m627kxAk005609@imap1.linux-foundation.org> (raw)
The patch titled
kernel/audit.c: nlh->nlmsg_type is gotten more than once
has been removed from the -mm tree. Its filename was
kernel-auditc-nlh-nlmsg_type-is-gotten-more-than-once.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: kernel/audit.c: nlh->nlmsg_type is gotten more than once
From: Peng Haitao <penght@cn.fujitsu.com>
The first argument "nlh->nlmsg_type" of audit_receive_filter() should be
modified to "msg_type" in audit_receive_msg().
Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Eric Paris <eparis@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
kernel/audit.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN kernel/audit.c~kernel-auditc-nlh-nlmsg_type-is-gotten-more-than-once kernel/audit.c
--- a/kernel/audit.c~kernel-auditc-nlh-nlmsg_type-is-gotten-more-than-once
+++ a/kernel/audit.c
@@ -779,7 +779,7 @@ static int audit_receive_msg(struct sk_b
}
/* fallthrough */
case AUDIT_LIST:
- err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
+ err = audit_receive_filter(msg_type, NETLINK_CB(skb).pid,
uid, seq, data, nlmsg_len(nlh),
loginuid, sessionid, sid);
break;
@@ -798,7 +798,7 @@ static int audit_receive_msg(struct sk_b
}
/* fallthrough */
case AUDIT_LIST_RULES:
- err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid,
+ err = audit_receive_filter(msg_type, NETLINK_CB(skb).pid,
uid, seq, data, nlmsg_len(nlh),
loginuid, sessionid, sid);
break;
_
Patches currently in -mm which might be from penght@cn.fujitsu.com are
origin.patch
reply other threads:[~2008-07-02 7:56 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=200807020746.m627kxAk005609@imap1.linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=eparis@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
--cc=penght@cn.fujitsu.com \
--cc=viro@zeniv.linux.org.uk \
/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.