diff options
author | Herbert Xu | 2005-08-18 23:36:59 +0200 |
---|---|---|
committer | David S. Miller | 2005-08-18 23:36:59 +0200 |
commit | 6fc8b9e7c60d4a3d4d7f1189f74e37651f5610e6 (patch) | |
tree | e0a28a510f7655fa180f48caee683d2532ef7f75 /net/ipv6 | |
parent | [IPV4]: Fix DST leak in icmp_push_reply() (diff) | |
download | kernel-qcow2-linux-6fc8b9e7c60d4a3d4d7f1189f74e37651f5610e6.tar.gz kernel-qcow2-linux-6fc8b9e7c60d4a3d4d7f1189f74e37651f5610e6.tar.xz kernel-qcow2-linux-6fc8b9e7c60d4a3d4d7f1189f74e37651f5610e6.zip |
[IPCOMP]: Fix false smp_processor_id warning
This patch fixes a false-positive from debug_smp_processor_id().
The processor ID is only used to look up crypto_tfm objects.
Any processor ID is acceptable here as long as it is one that is
iterated on by for_each_cpu().
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ipcomp6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index 423feb46ccc0..135383ef538f 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c @@ -354,7 +354,7 @@ static struct crypto_tfm **ipcomp6_alloc_tfms(const char *alg_name) int cpu; /* This can be any valid CPU ID so we don't need locking. */ - cpu = smp_processor_id(); + cpu = raw_smp_processor_id(); list_for_each_entry(pos, &ipcomp6_tfms_list, list) { struct crypto_tfm *tfm; |