diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-28 02:20:19 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-28 02:20:19 -0500 |
commit | e3dfa389fd2c79526b4bbf295726b66d21001664 (patch) | |
tree | 003575ae5e6c28c68b57e45629950f07f6e5d8ca | |
parent | a70486f0e669730bad6713063e3f59e2e870044f (diff) |
xfrm: Pass const xfrm_mark to xfrm_mark_put().
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/xfrm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 437c289649ca..efded23dc4ae 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
@@ -1611,7 +1611,7 @@ static inline int xfrm_mark_get(struct nlattr **attrs, struct xfrm_mark *m) | |||
1611 | return m->v & m->m; | 1611 | return m->v & m->m; |
1612 | } | 1612 | } |
1613 | 1613 | ||
1614 | static inline int xfrm_mark_put(struct sk_buff *skb, struct xfrm_mark *m) | 1614 | static inline int xfrm_mark_put(struct sk_buff *skb, const struct xfrm_mark *m) |
1615 | { | 1615 | { |
1616 | if (m->m | m->v) | 1616 | if (m->m | m->v) |
1617 | NLA_PUT(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m); | 1617 | NLA_PUT(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m); |