From: Harvey Harrison <harvey.harrison@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
viro@ZenIV.linux.org.uk, linux-kernel@vger.kernel.org,
mingo@elte.hu
Subject: Re: [PATCH] fix sparse warning from include/linux/mmzone.h
Date: Fri, 08 Feb 2008 14:38:12 -0800 [thread overview]
Message-ID: <1202510292.8067.6.camel@brick> (raw)
In-Reply-To: <alpine.LFD.1.00.0802081401410.2896@woody.linux-foundation.org>
include/linux/mmzone.h:640:22: warning: potentially expensive pointer subtraction
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
Linus, something like the following?
include/linux/mmzone.h | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index 8d8d197..7ed2922 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -637,9 +637,10 @@ static inline int is_normal_idx(enum zone_type idx)
static inline int is_highmem(struct zone *zone)
{
#ifdef CONFIG_HIGHMEM
- int zone_idx = zone - zone->zone_pgdat->node_zones;
- return zone_idx == ZONE_HIGHMEM ||
- (zone_idx == ZONE_MOVABLE && zone_movable_is_highmem());
+ struct zone *base = zone->zone_pgdat->node_zones;
+
+ return zone == base + ZONE_HIGHMEM ||
+ (zone == base + ZONE_MOVABLE && zone_movable_is_highmem());
#else
return 0;
#endif
--
1.5.4.1219.g65b9
prev parent reply other threads:[~2008-02-08 22:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-07 20:52 [PATCH] fix sparse warning from include/linux/mmzone.h Harvey Harrison
2008-02-08 21:51 ` Andrew Morton
2008-02-08 22:04 ` Linus Torvalds
2008-02-08 22:17 ` Harvey Harrison
2008-02-08 22:26 ` Ingo Molnar
2008-02-08 22:35 ` Linus Torvalds
2008-02-13 19:56 ` Harvey Harrison
2008-02-13 20:36 ` [PATCH] remove sparse warning for mmzone.h Harvey Harrison
2008-02-08 22:38 ` Harvey Harrison [this message]
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=1202510292.8067.6.camel@brick \
--to=harvey.harrison@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=torvalds@linux-foundation.org \
--cc=viro@ZenIV.linux.org.uk \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.