mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
13 lines
314 B
Plaintext
13 lines
314 B
Plaintext
|
dnl #
|
||
|
dnl # 2.6.28 API change
|
||
|
dnl # Added check_disk_size_change() helper function.
|
||
|
dnl #
|
||
|
AC_DEFUN([ZFS_AC_KERNEL_CHECK_DISK_SIZE_CHANGE], [
|
||
|
ZFS_CHECK_SYMBOL_EXPORT(
|
||
|
[check_disk_size_change],
|
||
|
[fs/block_dev.c],
|
||
|
[AC_DEFINE(HAVE_CHECK_DISK_SIZE_CHANGE, 1,
|
||
|
[check_disk_size_change() is available])],
|
||
|
[])
|
||
|
])
|