diff options
author | Brian Behlendorf <[email protected]> | 2009-05-20 11:31:55 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-05-20 11:31:55 -0700 |
commit | a093c6a49927912642ccc35e99f74ecf37d00334 (patch) | |
tree | 47260ac77af483a77797fd3c85a491d0ac3631d7 /spl_config.h.in | |
parent | 6c9433c150ad12d01f7ea4cfc72c8647a08ac5fc (diff) |
SLES10 Fixes (part 4):
- Configure check for SLES specific API change to vfs_unlink()
and vfs_rename() which added a 'struct vfsmount *' argument.
This was for something called the linux-security-module, but
it appears that it was never adopted upstream.
Diffstat (limited to 'spl_config.h.in')
-rw-r--r-- | spl_config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spl_config.h.in b/spl_config.h.in index e3b80e86e..3e9e6b9af 100644 --- a/spl_config.h.in +++ b/spl_config.h.in @@ -15,12 +15,18 @@ /* register_sysctl_table() wants 2 args */ #undef HAVE_2ARGS_REGISTER_SYSCTL +/* vfs_unlink() wants 2 args */ +#undef HAVE_2ARGS_VFS_UNLINK + /* INIT_WORK wants 3 args */ #undef HAVE_3ARGS_INIT_WORK /* on_each_cpu wants 3 args */ #undef HAVE_3ARGS_ON_EACH_CPU +/* vfs_rename() wants 4 args */ +#undef HAVE_4ARGS_VFS_RENAME + /* device_create wants 5 args */ #undef HAVE_5ARGS_DEVICE_CREATE |