]> git.proxmox.com Git - mirror_ovs.git/commitdiff
datapath: compat: Fix static key backport
authorYi-Hung Wei <yihung.wei@gmail.com>
Fri, 14 Dec 2018 23:28:55 +0000 (15:28 -0800)
committerBen Pfaff <blp@ovn.org>
Tue, 18 Dec 2018 20:16:32 +0000 (12:16 -0800)
The original static key backport is based on the upstream
net-next commit 11276d5306b8
("locking/static_keys: Add a new static_key interface").

However, in Canonical's Trusty kernel, it introduced partial static
support which have different definition of some of the macros that
breaks the compatibility code.

For example, in net-next git tree commit 11276d5306b8
("locking/static_keys: Add a new static_key interface").
+ #define DEFINE_STATIC_KEY_TRUE(name)   \
+       struct static_key_true name = STATIC_KEY_TRUE_INIT

On the other hand, in Canonical's Trusty git tree commit 13f5d5d1cccb6
("x86/KVM/VMX: Add module argument for L1TF mitigation")
+ #define DEFINE_STATIC_KEY_TRUE(name)   \
+       struct static_key name = STATIC_KEY_INIT_TRUE

This commit resolves the ovs kernel module compatibility issue on
Trusty kernel.

VMware-BZ: #2251101
Fixes: 6660a9597a49 ("datapath: compat: Introduce static key support")
Tested-by: Greg Rose <gvrose8192@gmail.com>
Reviewed-by: Greg Rose <gvrose8192@gmail.com>
Signed-off-by: Yi-Hung Wei <yihung.wei@gmail.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
acinclude.m4
datapath/linux/compat/include/linux/static_key.h

index de457f9569269ca604d917848db38c17c2cfb680..7ee3092d589bd28addff865b85e7de48bc3354d6 100644 (file)
@@ -483,8 +483,10 @@ AC_DEFUN([OVS_CHECK_LINUX_COMPAT], [
   OVS_GREP_IFELSE([$KSRC/include/linux/err.h], [IS_ERR_OR_NULL])
   OVS_GREP_IFELSE([$KSRC/include/linux/err.h], [PTR_ERR_OR_ZERO])
 
-  OVS_GREP_IFELSE([$KSRC/include/linux/jump_label.h], [DEFINE_STATIC_KEY_FALSE],
+  OVS_GREP_IFELSE([$KSRC/include/linux/jump_label.h], [static_branch_unlikely(],
                   [OVS_DEFINE([HAVE_UPSTREAM_STATIC_KEY])])
+  OVS_GREP_IFELSE([$KSRC/include/linux/jump_label.h], [DEFINE_STATIC_KEY_FALSE],
+                  [OVS_DEFINE([HAVE_DEFINE_STATIC_KEY])])
 
   OVS_GREP_IFELSE([$KSRC/include/linux/etherdevice.h], [eth_hw_addr_random])
   OVS_GREP_IFELSE([$KSRC/include/linux/etherdevice.h], [ether_addr_copy])
index ea59e3e285a1adcdf502a9452362cd6e59697347..01c6a93f07fec95807ef7b6f44c022dba6a33980 100644 (file)
@@ -23,16 +23,16 @@ struct static_key_false {
 #define rpl_STATIC_KEY_INIT_TRUE       { .enabled = ATOMIC_INIT(1) }
 #define rpl_STATIC_KEY_INIT_FALSE      { .enabled = ATOMIC_INIT(0) }
 
-#define STATIC_KEY_TRUE_INIT   \
+#define rpl_STATIC_KEY_TRUE_INIT       \
        (struct static_key_true) { .key = rpl_STATIC_KEY_INIT_TRUE,  }
-#define STATIC_KEY_FALSE_INIT  \
+#define rpl_STATIC_KEY_FALSE_INIT      \
        (struct static_key_false){ .key = rpl_STATIC_KEY_INIT_FALSE, }
 
-#define DEFINE_STATIC_KEY_TRUE(name)   \
-       struct static_key_true name = STATIC_KEY_TRUE_INIT
+#define rpl_DEFINE_STATIC_KEY_TRUE(name)       \
+       struct static_key_true name = rpl_STATIC_KEY_TRUE_INIT
 
-#define DEFINE_STATIC_KEY_FALSE(name)  \
-       struct static_key_false name = STATIC_KEY_FALSE_INIT
+#define rpl_DEFINE_STATIC_KEY_FALSE(name)      \
+       struct static_key_false name = rpl_STATIC_KEY_FALSE_INIT
 
 static inline int rpl_static_key_count(struct static_key *key)
 {
@@ -59,6 +59,14 @@ static inline void rpl_static_key_disable(struct static_key *key)
                static_key_slow_dec(key);
 }
 
+#ifdef HAVE_DEFINE_STATIC_KEY
+#undef DEFINE_STATIC_KEY_TRUE
+#undef DEFINE_STATIC_KEY_FALSE
+#endif
+
+#define DEFINE_STATIC_KEY_TRUE         rpl_DEFINE_STATIC_KEY_TRUE
+#define DEFINE_STATIC_KEY_FALSE                rpl_DEFINE_STATIC_KEY_FALSE
+
 #define static_branch_likely(x)                likely(static_key_enabled(&(x)->key))
 #define static_branch_unlikely(x)      unlikely(static_key_enabled(&(x)->key))