mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 22:58:29 +00:00
[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>
This commit is contained in:
parent
cb94c62c25
commit
6fc8b9e7c6
2 changed files with 2 additions and 2 deletions
|
@ -358,7 +358,7 @@ static struct crypto_tfm **ipcomp_alloc_tfms(const char *alg_name)
|
||||||
int cpu;
|
int cpu;
|
||||||
|
|
||||||
/* This can be any valid CPU ID so we don't need locking. */
|
/* 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, &ipcomp_tfms_list, list) {
|
list_for_each_entry(pos, &ipcomp_tfms_list, list) {
|
||||||
struct crypto_tfm *tfm;
|
struct crypto_tfm *tfm;
|
||||||
|
|
|
@ -354,7 +354,7 @@ static struct crypto_tfm **ipcomp6_alloc_tfms(const char *alg_name)
|
||||||
int cpu;
|
int cpu;
|
||||||
|
|
||||||
/* This can be any valid CPU ID so we don't need locking. */
|
/* 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) {
|
list_for_each_entry(pos, &ipcomp6_tfms_list, list) {
|
||||||
struct crypto_tfm *tfm;
|
struct crypto_tfm *tfm;
|
||||||
|
|
Loading…
Add table
Reference in a new issue