diff options
author | Steven Rostedt (Red Hat) <[email protected]> | 2015-03-27 17:39:49 -0400 |
---|---|---|
committer | Steven Rostedt <[email protected]> | 2015-03-30 13:36:31 -0400 |
commit | d631c8cceb1d1d06f372878935949d421585186b (patch) | |
tree | 7a213ad0e5ede27961a63eb97bbc361309c4a599 /net/unix/sysctl_net_unix.c | |
parent | d9a16d3ab8770357015c85a07387f1d2676a4773 (diff) |
ring-buffer: Remove duplicate use of '&' in recursive code
A clean up of the recursive protection code changed
val = this_cpu_read(current_context);
val--;
val &= this_cpu_read(current_context);
to
val = this_cpu_read(current_context);
val &= val & (val - 1);
Which has a duplicate use of '&' as the above is the same as
val = val & (val - 1);
Actually, it would be best to remove that line altogether and
just add it to where it is used.
And Christoph even mentioned that it can be further compacted to
just a single line:
__this_cpu_and(current_context, __this_cpu_read(current_context) - 1);
Link: http://lkml.kernel.org/[email protected]
Suggested-by: Christoph Lameter <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
Diffstat (limited to 'net/unix/sysctl_net_unix.c')
0 files changed, 0 insertions, 0 deletions