Skip to content

Commit d9dce3c

Browse files
committed
config: fix various bits of missing output
Sponsored-by: https://despairlabs.com/sponsor/ Signed-off-by: Rob Norris <[email protected]>
1 parent f282b59 commit d9dce3c

8 files changed

+16
-0
lines changed

config/kernel-generic_fillattr.m4

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,16 @@ AC_DEFUN([ZFS_AC_KERNEL_GENERIC_FILLATTR], [
4848
AC_DEFINE(HAVE_GENERIC_FILLATTR_IDMAP_REQMASK, 1,
4949
[generic_fillattr requires struct mnt_idmap* and u32 request_mask])
5050
],[
51+
AC_MSG_RESULT([no])
52+
5153
AC_MSG_CHECKING([whether generic_fillattr requires struct mnt_idmap*])
5254
ZFS_LINUX_TEST_RESULT([generic_fillattr_mnt_idmap], [
5355
AC_MSG_RESULT([yes])
5456
AC_DEFINE(HAVE_GENERIC_FILLATTR_IDMAP, 1,
5557
[generic_fillattr requires struct mnt_idmap*])
5658
],[
59+
AC_MSG_RESULT([no])
60+
5761
AC_MSG_CHECKING([whether generic_fillattr requires struct user_namespace*])
5862
ZFS_LINUX_TEST_RESULT([generic_fillattr_userns], [
5963
AC_MSG_RESULT([yes])

config/kernel-inode-permission.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ AC_DEFUN([ZFS_AC_KERNEL_PERMISSION], [
4242
AC_DEFINE(HAVE_IOPS_PERMISSION_IDMAP, 1,
4343
[iops->permission() takes struct mnt_idmap*])
4444
],[
45+
AC_MSG_RESULT(no)
46+
4547
AC_MSG_CHECKING([whether iops->permission() takes struct user_namespace*])
4648
ZFS_LINUX_TEST_RESULT([permission_userns], [
4749
AC_MSG_RESULT(yes)

config/kernel-mkdir.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ AC_DEFUN([ZFS_AC_KERNEL_MKDIR], [
6868
AC_DEFINE(HAVE_IOPS_MKDIR_IDMAP, 1,
6969
[iops->mkdir() takes struct mnt_idmap*])
7070
],[
71+
AC_MSG_RESULT(no)
72+
7173
dnl #
7274
dnl # 5.12 API change
7375
dnl # The struct user_namespace arg was added as the first argument to

config/kernel-rename.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ AC_DEFUN([ZFS_AC_KERNEL_RENAME], [
5858
AC_DEFINE(HAVE_IOPS_RENAME_IDMAP, 1,
5959
[iops->rename() takes struct mnt_idmap*])
6060
],[
61+
AC_MSG_RESULT(no)
62+
6163
AC_MSG_CHECKING([whether iops->rename() takes struct user_namespace*])
6264
ZFS_LINUX_TEST_RESULT([inode_operations_rename_userns], [
6365
AC_MSG_RESULT(yes)

config/kernel-setattr-prepare.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ AC_DEFUN([ZFS_AC_KERNEL_SETATTR_PREPARE], [
5151
AC_DEFINE(HAVE_SETATTR_PREPARE_IDMAP, 1,
5252
[setattr_prepare() accepts mnt_idmap])
5353
], [
54+
AC_MSG_RESULT(no)
55+
5456
AC_MSG_CHECKING([whether setattr_prepare() is available and accepts struct user_namespace*])
5557
ZFS_LINUX_TEST_RESULT_SYMBOL([setattr_prepare_userns],
5658
[setattr_prepare], [fs/attr.c], [

config/kernel-shrink.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ AC_DEFUN([ZFS_AC_KERNEL_SRC_SHRINKER_REGISTER], [
108108
])
109109

110110
AC_DEFUN([ZFS_AC_KERNEL_SHRINKER_REGISTER], [
111+
AC_MSG_CHECKING([whether shrinker_register() exists])
111112
ZFS_LINUX_TEST_RESULT([shrinker_register], [
112113
AC_MSG_RESULT(yes)
113114
AC_DEFINE(HAVE_SHRINKER_REGISTER, 1, [shrinker_register exists])

config/kernel-symlink.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ AC_DEFUN([ZFS_AC_KERNEL_SYMLINK], [
4141
AC_DEFINE(HAVE_IOPS_SYMLINK_IDMAP, 1,
4242
[iops->symlink() takes struct mnt_idmap*])
4343
],[
44+
AC_MSG_RESULT(no)
45+
4446
AC_MSG_CHECKING([whether iops->symlink() takes struct user_namespace*])
4547
ZFS_LINUX_TEST_RESULT([symlink_userns], [
4648
AC_MSG_RESULT(yes)

config/kernel-xattr-handler.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ AC_DEFUN([ZFS_AC_KERNEL_XATTR_HANDLER_SET], [
130130
AC_DEFINE(HAVE_XATTR_SET_IDMAP, 1,
131131
[xattr_handler->set() takes mnt_idmap])
132132
], [
133+
AC_MSG_RESULT(no)
133134
AC_MSG_CHECKING([whether xattr_handler->set() wants dentry, inode, and user_namespace])
134135
ZFS_LINUX_TEST_RESULT([xattr_handler_set_userns], [
135136
AC_MSG_RESULT(yes)

0 commit comments

Comments
 (0)