* [PATCH] mm/gup: Fix the format of hugepte_addr_end and gup_hugepte
@ 2022-07-04 12:34 Deming Wang
0 siblings, 0 replies; only message in thread
From: Deming Wang @ 2022-07-04 12:34 UTC (permalink / raw)
To: akpm; +Cc: linux-mm, linux-kernel, Deming Wang
Operators should be separated by spaces.
Signed-off-by: Deming Wang <wangdeming@inspur.com>
---
mm/gup.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/gup.c b/mm/gup.c
index 0fa09ac3cf2f..2fd09f0820a4 100644
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -2522,7 +2522,7 @@ static int record_subpages(struct page *page, unsigned long addr,
static unsigned long hugepte_addr_end(unsigned long addr, unsigned long end,
unsigned long sz)
{
- unsigned long __boundary = (addr + sz) & ~(sz-1);
+ unsigned long __boundary = (addr + sz) & ~(sz - 1);
return (__boundary - 1 < end - 1) ? __boundary : end;
}
@@ -2536,7 +2536,7 @@ static int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long addr,
pte_t pte;
int refs;
- pte_end = (addr + sz) & ~(sz-1);
+ pte_end = (addr + sz) & ~(sz - 1);
if (pte_end < end)
end = pte_end;
--
2.27.0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-07-11 2:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 12:34 [PATCH] mm/gup: Fix the format of hugepte_addr_end and gup_hugepte Deming Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox