From: Wei Yongjun <yjwei@cn.fujitsu.com>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: David Miller <davem@davemloft.net>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>
Subject: Re: [PATCHv2] xfrm: Fix kernel panic when flush and dump SPD entries
Date: Mon, 01 Dec 2008 14:25:45 +0800 [thread overview]
Message-ID: <49338369.4070405@cn.fujitsu.com> (raw)
In-Reply-To: <20081201050046.GB18292@gondor.apana.org.au>
Herbert Xu wrote:
> On Mon, Dec 01, 2008 at 10:10:16AM +0800, Wei Yongjun wrote:
>
>> diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c
>> index 058f04f..fb216c9 100644
>> --- a/net/xfrm/xfrm_policy.c
>> +++ b/net/xfrm/xfrm_policy.c
>> @@ -817,6 +817,7 @@ int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info)
>> continue;
>> hlist_del(&pol->bydst);
>> hlist_del(&pol->byidx);
>> + list_del(&pol->walk.all);
>>
>
> Good catch. In fact there so man occurrences of these three calls
> that perhaps we should put them (and any other relevant code) in a
> helper.
>
I think you mean used __xfrm_policy_unlink() function to instead those
codes.
1098 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy
*pol,
1099 int dir)
1100 {
1101 if (hlist_unhashed(&pol->bydst))
1102 return NULL;
1103
1104 hlist_del(&pol->bydst);
1105 hlist_del(&pol->byidx);
1106 list_del(&pol->walk.all);
1107 xfrm_policy_count[dir]--;
1108
1109 return pol;
1110 }
I will post the patch later.
next prev parent reply other threads:[~2008-12-01 6:25 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-01 2:00 [PATCH] xfrm: Fix kernel panic when flush and dump SPD entries Wei Yongjun
2008-12-01 2:10 ` [PATCHv2] " Wei Yongjun
2008-12-01 2:17 ` Yang Hongyang
2008-12-01 5:00 ` Herbert Xu
2008-12-01 6:25 ` Wei Yongjun [this message]
2008-12-01 6:27 ` [PATCHv3] " Wei Yongjun
2008-12-01 7:50 ` [PATCH v4] " Wei Yongjun
2008-12-01 8:11 ` Herbert Xu
2008-12-01 8:38 ` David Miller
2008-12-01 9:50 ` [PATCH 1/2] " Wei Yongjun
2008-12-03 8:28 ` David Miller
2008-12-01 9:55 ` [PATCH 1/2] xfrm: Cleanup for unlink SPD entry Wei Yongjun
2008-12-01 9:57 ` Wei Yongjun
2008-12-02 6:53 ` Herbert Xu
2008-12-03 8:33 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=49338369.4070405@cn.fujitsu.com \
--to=yjwei@cn.fujitsu.com \
--cc=davem@davemloft.net \
--cc=herbert@gondor.apana.org.au \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).