summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorDavid S. Miller2011-02-24 07:25:19 +0100
committerDavid S. Miller2011-02-24 08:07:44 +0100
commit63eb23f5d80d7158fa575aaca240cb8497e2c06f (patch)
treea140e16c39b25184292de5bc2dd5a490292ea72a /include/net
parentxfrm: Const'ify policy arg and local selector in xfrm_policy_match. (diff)
downloadkernel-qcow2-linux-63eb23f5d80d7158fa575aaca240cb8497e2c06f.tar.gz
kernel-qcow2-linux-63eb23f5d80d7158fa575aaca240cb8497e2c06f.tar.xz
kernel-qcow2-linux-63eb23f5d80d7158fa575aaca240cb8497e2c06f.zip
xfrm: Const'ify policy arg to xp_net.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/xfrm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h
index 1806c918a15a..5402a1e2c0de 100644
--- a/include/net/xfrm.h
+++ b/include/net/xfrm.h
@@ -506,7 +506,7 @@ struct xfrm_policy {
struct xfrm_tmpl xfrm_vec[XFRM_MAX_DEPTH];
};
-static inline struct net *xp_net(struct xfrm_policy *xp)
+static inline struct net *xp_net(const struct xfrm_policy *xp)
{
return read_pnet(&xp->xp_net);
}