| commit | e729e8799ebbb39c6ceb3d851f94e34cb56c7439 | [log] [tgz] |
|---|---|---|
| author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Mon Jan 23 12:04:46 2017 -0800 |
| committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Mon Jan 23 18:42:38 2017 -0800 |
| tree | c21ede66b46ac438c2c66ef68550b385284c5eba | |
| parent | 5b5ad7a23fcdd6b96122f267d4afd6acdce3ebad [diff] |
rcu: Semicolon inside RCU_TRACE() for tree.c The current use of "RCU_TRACE(statement);" can cause odd bugs, especially where "statement" is a local-variable declaration, as it can leave a misplaced ";" in the source code. This commit therefore converts these to "RCU_TRACE(statement;)", which avoids the misplaced ";". Reported-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>