Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
2a777de7
Commit
2a777de7
authored
May 21, 2019
by
Paul E. McKenney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rcu/nocb: Remove obsolete nocb_cb_tail and nocb_cb_head fields
Signed-off-by:
Paul E. McKenney
<
paulmck@linux.ibm.com
>
parent
c035280f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
3 deletions
+0
-3
kernel/rcu/tree.h
kernel/rcu/tree.h
+0
-2
kernel/rcu/tree_plugin.h
kernel/rcu/tree_plugin.h
+0
-1
No files found.
kernel/rcu/tree.h
View file @
2a777de7
...
...
@@ -194,8 +194,6 @@ struct rcu_data {
/* 5) Callback offloading. */
#ifdef CONFIG_RCU_NOCB_CPU
struct
rcu_head
*
nocb_cb_head
;
/* CBs ready to invoke. */
struct
rcu_head
**
nocb_cb_tail
;
struct
swait_queue_head
nocb_cb_wq
;
/* For nocb kthreads to sleep on. */
struct
task_struct
*
nocb_gp_kthread
;
raw_spinlock_t
nocb_lock
;
/* Guard following pair of fields. */
...
...
kernel/rcu/tree_plugin.h
View file @
2a777de7
...
...
@@ -1913,7 +1913,6 @@ static void __init rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp)
{
init_swait_queue_head
(
&
rdp
->
nocb_cb_wq
);
init_swait_queue_head
(
&
rdp
->
nocb_gp_wq
);
rdp
->
nocb_cb_tail
=
&
rdp
->
nocb_cb_head
;
raw_spin_lock_init
(
&
rdp
->
nocb_lock
);
timer_setup
(
&
rdp
->
nocb_timer
,
do_nocb_deferred_wakeup_timer
,
0
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment