commit | 9e3513b7af9ef3b6225f539181c2d94328bd18f7 | [log] [tgz] |
---|---|---|
author | Sasha Levin <sasha.levin@oracle.com> | Wed Feb 05 17:58:37 2014 -0500 |
committer | Sasha Levin <sasha.levin@oracle.com> | Wed Feb 26 21:22:00 2014 -0500 |
tree | 310ec1bc50f9d9139a520fd2f86bab0abf02affb | |
parent | 1ddc1ffa2f8219e0c55c7f800048533e1ce8dee5 [diff] |
tools/liblockdep: Add a stub for new rcu_is_watching Stub out rcu_is_watching(), prevents build error with the updated tree. Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
diff --git a/tools/lib/lockdep/uinclude/linux/rcu.h b/tools/lib/lockdep/uinclude/linux/rcu.h index 4c99fcb..042ee8e 100644 --- a/tools/lib/lockdep/uinclude/linux/rcu.h +++ b/tools/lib/lockdep/uinclude/linux/rcu.h
@@ -13,4 +13,9 @@ return 1; } +static inline bool rcu_is_watching(void) +{ + return false; +} + #endif