diff options
author | Herbert Xu | 2005-06-19 07:44:00 +0200 |
---|---|---|
committer | David S. Miller | 2005-06-19 07:44:00 +0200 |
commit | bf08867f91a43aa3ba2e4598c06c4769a6cdddf6 (patch) | |
tree | 316504b4756a32d802ea037815f2d9022ab88bfe /include/net | |
parent | [IPSEC] Fix xfrm to pfkey SA state conversion (diff) | |
download | kernel-qcow2-linux-bf08867f91a43aa3ba2e4598c06c4769a6cdddf6.tar.gz kernel-qcow2-linux-bf08867f91a43aa3ba2e4598c06c4769a6cdddf6.tar.xz kernel-qcow2-linux-bf08867f91a43aa3ba2e4598c06c4769a6cdddf6.zip |
[IPSEC] Turn km_event.data into a union
This patch turns km_event.data into a union. This makes code that
uses it clearer.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/xfrm.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index aaa0f5f330e2..fda356e81014 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h @@ -173,7 +173,12 @@ enum { /* callback structure passed from either netlink or pfkey */ struct km_event { - u32 data; + union { + u32 hard; + u32 proto; + u32 byid; + } data; + u32 seq; u32 pid; u32 event; |