You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] remove duplicated sys_open32() code from 64bit archs
64 bit architectures all implement their own compatibility sys_open(), when in fact the difference is simply not forcing the O_LARGEFILE flag. So use the a common function instead. Signed-off-by: Miklos Szeredi <miklos@szeredi.hu> Cc: <viro@parcelfarce.linux.theplanet.co.uk> Cc: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
ab8d11beb4
commit
e922efc342
+10
@@ -1274,6 +1274,16 @@ out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* Exactly like fs/open.c:sys_open(), except that it doesn't set the
|
||||
* O_LARGEFILE flag.
|
||||
*/
|
||||
asmlinkage long
|
||||
compat_sys_open(const char __user *filename, int flags, int mode)
|
||||
{
|
||||
return do_sys_open(filename, flags, mode);
|
||||
}
|
||||
|
||||
/*
|
||||
* compat_count() counts the number of arguments/envelopes. It is basically
|
||||
* a copy of count() from fs/exec.c, except that it works with 32 bit argv
|
||||
|
||||
Reference in New Issue
Block a user