Skip to content

Commit 5a5e75f

Browse files
heicarsttorvalds
authored andcommitted
tile: remove compat_sys_lookup_dcookie declaration to fix compile error
With commit d8d14bd ("fs/compat: fix lookup_dcookie() parameter handling") I changed the type of the len parameter of the lookup_dcookie() syscall. However I missed that there was still a stale declaration in arch/tile/.. which now causes a compile error on tile: In file included from fs/dcookies.c:28:0: include/linux/compat.h:425:17: error: conflicting types for 'compat_sys_lookup_dcookie' fs/dcookies.c:207:1: error: conflicting types for 'compat_sys_lookup_dcookie' Simply remove the declaration in the tile architecture, which is only a leftover from before the different compat lookup_dcookie() versions have been merged. The correct declaration is now in include/linux/compat.h The build error was reported by Fenguang's build bot. Signed-off-by: Heiko Carstens <[email protected]> Acked-by: Chris Metcalf <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 0f44bc3 commit 5a5e75f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

arch/tile/include/asm/compat.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ long compat_sys_pread64(unsigned int fd, char __user *ubuf, size_t count,
281281
u32 dummy, u32 low, u32 high);
282282
long compat_sys_pwrite64(unsigned int fd, char __user *ubuf, size_t count,
283283
u32 dummy, u32 low, u32 high);
284-
long compat_sys_lookup_dcookie(u32 low, u32 high, char __user *buf, size_t len);
285284
long compat_sys_sync_file_range2(int fd, unsigned int flags,
286285
u32 offset_lo, u32 offset_hi,
287286
u32 nbytes_lo, u32 nbytes_hi);

0 commit comments

Comments
 (0)