* [PATCH] arm/mm: use PAGE_ALIGNED instead of IS_ALIGNED
@ 2016-01-12 2:22 wangkefeng.wang at huawei.com
0 siblings, 0 replies; only message in thread
From: wangkefeng.wang at huawei.com @ 2016-01-12 2:22 UTC (permalink / raw)
To: linux-arm-kernel
From: Kefeng Wang <wangkefeng.wang@huawei.com>
Use PAGE_ALIGEND macro in <linux/mm.h> to simplify code.
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
---
arch/arm/mm/pageattr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mm/pageattr.c b/arch/arm/mm/pageattr.c
index cf30daf..fa1c0f1 100644
--- a/arch/arm/mm/pageattr.c
+++ b/arch/arm/mm/pageattr.c
@@ -43,7 +43,7 @@ static int change_memory_common(unsigned long addr, int numpages,
int ret;
struct page_change_data data;
- if (!IS_ALIGNED(addr, PAGE_SIZE)) {
+ if (!PAGE_ALIGNED(addr)) {
start &= PAGE_MASK;
end = start + size;
WARN_ON_ONCE(1);
--
2.6.0.GIT
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-01-12 2:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-12 2:22 [PATCH] arm/mm: use PAGE_ALIGNED instead of IS_ALIGNED wangkefeng.wang at huawei.com
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).