Skip to content

Commit a22fea9

Browse files
akpm00torvalds
authored andcommitted
arch/sparc/include/asm/pgtable_64.h: fix build
A last-minute fixlet which I'd failed to merge at the appropriate time had the predictable effect. Fixes: f672e2c217e2d4b2 ("lib: untag user pointers in strn*_user") Cc: Andrey Konovalov <[email protected]> Cc: David Miller <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent b4ed71f commit a22fea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/sparc/include/asm/pgtable_64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ static inline unsigned long __untagged_addr(unsigned long start)
10991099
return start;
11001100
}
11011101
#define untagged_addr(addr) \
1102-
((__typeof__(addr))(__untagged_addr((unsigned long)(addr)))
1102+
((__typeof__(addr))(__untagged_addr((unsigned long)(addr))))
11031103

11041104
static inline bool pte_access_permitted(pte_t pte, bool write)
11051105
{

0 commit comments

Comments
 (0)