diff options
author | Paul Jackson <pj@sgi.com> | 2006-03-24 06:16:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:24 -0500 |
commit | 29afd49b72a9b2c26fa8c678bcf3976d0540446b (patch) | |
tree | 4cc12f5bb3c5c3ee668226990e79115081609265 /kernel/cpuset.c | |
parent | b2455396be35383c4eebc6745cc718b1dd9e23df (diff) |
[PATCH] cpuset: remove useless local variable initialization
Remove a useless variable initialization in cpuset __cpuset_zone_allowed().
The local variable 'allowed' is unconditionally set before use, later on
in the code, so does not need to be initialized.
Not that it seems to matter to the code generated any, as the compiler
optimizes out the superfluous assignment anyway.
Signed-off-by: Paul Jackson <pj@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/cpuset.c')
-rw-r--r-- | kernel/cpuset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cpuset.c b/kernel/cpuset.c index 702928664f42..18aea1bd1284 100644 --- a/kernel/cpuset.c +++ b/kernel/cpuset.c | |||
@@ -2205,7 +2205,7 @@ int __cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask) | |||
2205 | { | 2205 | { |
2206 | int node; /* node that zone z is on */ | 2206 | int node; /* node that zone z is on */ |
2207 | const struct cpuset *cs; /* current cpuset ancestors */ | 2207 | const struct cpuset *cs; /* current cpuset ancestors */ |
2208 | int allowed = 1; /* is allocation in zone z allowed? */ | 2208 | int allowed; /* is allocation in zone z allowed? */ |
2209 | 2209 | ||
2210 | if (in_interrupt()) | 2210 | if (in_interrupt()) |
2211 | return 1; | 2211 | return 1; |