Add -p switch to "zpool get"
[zfs.git] / config / kernel-automount.m4
index 972b09b..1ee4c16 100644 (file)
@@ -9,12 +9,12 @@ AC_DEFUN([ZFS_AC_KERNEL_AUTOMOUNT], [
        AC_MSG_CHECKING([whether dops->d_automount() exists])
        ZFS_LINUX_TRY_COMPILE([
                #include <linux/dcache.h>
-       ],[
-               struct vfsmount *(*d_automount) (struct path *) = NULL;
+               struct vfsmount *d_automount(struct path *p) { return NULL; }
                struct dentry_operations dops __attribute__ ((unused)) = {
                        .d_automount = d_automount,
                };
        ],[
+       ],[
                AC_MSG_RESULT(yes)
                AC_DEFINE(HAVE_AUTOMOUNT, 1, [dops->automount() exists])
        ],[