[<prev] [next>] [day] [month] [year] [list]
Message-ID: <158504138911.28353.7021878257400945600.tip-bot2@tip-bot2>
Date: Tue, 24 Mar 2020 09:16:29 -0000
From: "tip-bot2 for SeongJae Park" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: SeongJae Park <sjpark@...zon.de>,
"Paul E. McKenney" <paulmck@...nel.org>, x86 <x86@...nel.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [tip: core/rcu] doc/RCU/listRCU: Fix typos in a example code snippets
The following commit has been merged into the core/rcu branch of tip:
Commit-ID: c50a871409dc664f2f89d11926d9a6b8ab7f5b07
Gitweb: https://git.kernel.org/tip/c50a871409dc664f2f89d11926d9a6b8ab7f5b07
Author: SeongJae Park <sjpark@...zon.de>
AuthorDate: Mon, 06 Jan 2020 21:07:57 +01:00
Committer: Paul E. McKenney <paulmck@...nel.org>
CommitterDate: Thu, 27 Feb 2020 07:03:13 -08:00
doc/RCU/listRCU: Fix typos in a example code snippets
Signed-off-by: SeongJae Park <sjpark@...zon.de>
Signed-off-by: Paul E. McKenney <paulmck@...nel.org>
---
Documentation/RCU/listRCU.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/RCU/listRCU.rst b/Documentation/RCU/listRCU.rst
index 55d2b30..e768f56 100644
--- a/Documentation/RCU/listRCU.rst
+++ b/Documentation/RCU/listRCU.rst
@@ -226,7 +226,7 @@ need to be filled in)::
list_for_each_entry(e, list, list) {
if (!audit_compare_rule(rule, &e->rule)) {
e->rule.action = newaction;
- e->rule.file_count = newfield_count;
+ e->rule.field_count = newfield_count;
write_unlock(&auditsc_lock);
return 0;
}
@@ -255,7 +255,7 @@ RCU (*read-copy update*) its name. The RCU code is as follows::
return -ENOMEM;
audit_copy_rule(&ne->rule, &e->rule);
ne->rule.action = newaction;
- ne->rule.file_count = newfield_count;
+ ne->rule.field_count = newfield_count;
list_replace_rcu(&e->list, &ne->list);
call_rcu(&e->rcu, audit_free_rule);
return 0;
Powered by blists - more mailing lists