diff options
| author | Jamal Hadi Salim <hadi@cyberus.ca> | 2006-11-19 17:53:07 -0500 |
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2006-11-21 19:16:34 -0500 |
| commit | 334f3d45d3e0c925eb15003560cdd6f5383c88d0 (patch) | |
| tree | f2e63fc32b3861693541a524fa8fb4e5bf86bea9 | |
| parent | fb47ddb2db9c18664bd7b06c201a2398885b64fc (diff) | |
[XFRM]: Sub-policies broke policy events
XFRM policy events are broken when sub-policy feature is turned on.
A simple test to verify this:
run ip xfrm mon on one window and add then delete a policy on another
window ..
Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Acked-by: Masahide NAKAMURA <nakam@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/xfrm/xfrm_user.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c index b43e7647e125..2dae1c1ea362 100644 --- a/net/xfrm/xfrm_user.c +++ b/net/xfrm/xfrm_user.c | |||
| @@ -2060,6 +2060,9 @@ static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event * | |||
| 2060 | len += RTA_SPACE(headlen); | 2060 | len += RTA_SPACE(headlen); |
| 2061 | headlen = sizeof(*id); | 2061 | headlen = sizeof(*id); |
| 2062 | } | 2062 | } |
| 2063 | #ifdef CONFIG_XFRM_SUB_POLICY | ||
| 2064 | len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type)); | ||
| 2065 | #endif | ||
| 2063 | len += NLMSG_SPACE(headlen); | 2066 | len += NLMSG_SPACE(headlen); |
| 2064 | 2067 | ||
| 2065 | skb = alloc_skb(len, GFP_ATOMIC); | 2068 | skb = alloc_skb(len, GFP_ATOMIC); |
