sock: make lockdep_sock_is_held static inline
authorHannes Frederic Sowa <hannes@stressinduktion.org>
Thu, 7 Apr 2016 21:53:35 +0000 (23:53 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 7 Apr 2016 22:01:21 +0000 (18:01 -0400)
I forgot to add inline to lockdep_sock_is_held, so it generated all
kinds of build warnings if not build with lockdep support.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sock.h

index eb2d7c3..46b2937 100644 (file)
@@ -1360,7 +1360,7 @@ do {                                                                      \
        lockdep_init_map(&(sk)->sk_lock.dep_map, (name), (key), 0);     \
 } while (0)
 
-static bool lockdep_sock_is_held(const struct sock *csk)
+static inline bool lockdep_sock_is_held(const struct sock *csk)
 {
        struct sock *sk = (struct sock *)csk;