forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH] fix missing ifdefs in syscall classes hookup for generic targets
several targets have no ....at() family and m32r calls its only chown variant chown32(), with __NR_chown being undefined. creat(2) is also absent in some targets. Signed-off-by: Al Viro <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Al Viro
authored and
Linus Torvalds
committed
Sep 23, 2006
1 parent
db39221
commit a83fbf6
Showing
3 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
__NR_rename, | ||
__NR_mkdir, | ||
__NR_rmdir, | ||
#ifdef __NR_creat | ||
__NR_creat, | ||
#endif | ||
__NR_link, | ||
__NR_unlink, | ||
__NR_symlink, | ||
__NR_mknod, | ||
#ifdef __NR_mkdirat | ||
__NR_mkdirat, | ||
__NR_mknodat, | ||
__NR_unlinkat, | ||
__NR_renameat, | ||
__NR_linkat, | ||
__NR_symlinkat, | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters