[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1417157936-5522-1-git-send-email-roy.qing.li@gmail.com>
Date: Fri, 28 Nov 2014 14:58:56 +0800
From: roy.qing.li@...il.com
To: netdev@...r.kernel.org
Subject: [PATCH iproute2] ip xfrm: support 64bit kernel and 32bit userspace
From: Li RongQing <roy.qing.li@...il.com>
The size of struct xfrm_userpolicy_info is 168 bytes for 64bit kernel, and
164 bytes for 32bit userspace because of the different alignment. and lead
to "ip xfrm" be unable to work.
add a pad in struct xfrm_userpolicy_info, and enable it by set
KERNEL_64_USERSPACE_32 to y
Signed-off-by: Li RongQing <roy.qing.li@...il.com>
---
Makefile | 4 ++++
include/linux/xfrm.h | 3 +++
2 files changed, 7 insertions(+)
diff --git a/Makefile b/Makefile
index 9dbb29f..3cd0d67 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,10 @@ ifneq ($(SHARED_LIBS),y)
DEFINES+= -DNO_SHARED_LIBS
endif
+ifeq ($(KERNEL_64_USERSPACE_32),y)
+DEFINES+= -DKNL_64_US_32
+endif
+
DEFINES+=-DCONFDIR=\"$(CONFDIR)\"
#options for decnet
diff --git a/include/linux/xfrm.h b/include/linux/xfrm.h
index fa2ecb2..009510c 100644
--- a/include/linux/xfrm.h
+++ b/include/linux/xfrm.h
@@ -407,6 +407,9 @@ struct xfrm_userpolicy_info {
/* Automatically expand selector to include matching ICMP payloads. */
#define XFRM_POLICY_ICMP 2
__u8 share;
+#ifdef KNL_64_US_32
+ int pad;
+#endif
};
struct xfrm_userpolicy_id {
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists