forked from openzfs/zfs
-
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.
Merge pull request openzfs#1083 from ahrens/merge2
merge with 'zdb: include cloned blocks in block statistics'
- Loading branch information
Showing
18 changed files
with
424 additions
and
37 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
dnl # | ||
dnl # Linux 6.5 removes register_sysctl_table | ||
dnl # | ||
AC_DEFUN([ZFS_AC_KERNEL_SRC_REGISTER_SYSCTL_TABLE], [ | ||
ZFS_LINUX_TEST_SRC([has_register_sysctl_table], [ | ||
#include <linux/sysctl.h> | ||
static struct ctl_table dummy_table[] = { | ||
{} | ||
}; | ||
],[ | ||
struct ctl_table_header *h | ||
__attribute((unused)) = register_sysctl_table(dummy_table); | ||
]) | ||
]) | ||
|
||
AC_DEFUN([ZFS_AC_KERNEL_REGISTER_SYSCTL_TABLE], [ | ||
AC_MSG_CHECKING([whether register_sysctl_table exists]) | ||
ZFS_LINUX_TEST_RESULT([has_register_sysctl_table], [ | ||
AC_MSG_RESULT([yes]) | ||
AC_DEFINE(HAVE_SYSCTL_REGISTER_TABLE, 1, | ||
[sysctl_register_table exists]) | ||
],[ | ||
AC_MSG_RESULT([no]) | ||
]) | ||
]) |
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
Oops, something went wrong.