mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-13 19:50:25 +03:00
Remove blk_rq_pos() autotools check
Signed-off-by: Richard Yao <ryao@gentoo.org>
This commit is contained in:
parent
f8c56b405d
commit
f952eaa7ec
@ -1,21 +0,0 @@
|
|||||||
dnl #
|
|
||||||
dnl # 2.6.31 API change
|
|
||||||
dnl #
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_BLK_RQ_POS], [
|
|
||||||
AC_MSG_CHECKING([whether blk_rq_pos() is available])
|
|
||||||
tmp_flags="$EXTRA_KCFLAGS"
|
|
||||||
EXTRA_KCFLAGS="${NO_UNUSED_BUT_SET_VARIABLE}"
|
|
||||||
ZFS_LINUX_TRY_COMPILE([
|
|
||||||
#include <linux/blkdev.h>
|
|
||||||
],[
|
|
||||||
struct request *req = NULL;
|
|
||||||
(void) blk_rq_pos(req);
|
|
||||||
],[
|
|
||||||
AC_MSG_RESULT(yes)
|
|
||||||
AC_DEFINE(HAVE_BLK_RQ_POS, 1,
|
|
||||||
[blk_rq_pos() is available])
|
|
||||||
],[
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
])
|
|
||||||
EXTRA_KCFLAGS="$tmp_flags"
|
|
||||||
])
|
|
@ -34,7 +34,6 @@ AC_DEFUN([ZFS_AC_CONFIG_KERNEL], [
|
|||||||
ZFS_AC_KERNEL_BLK_QUEUE_NONROT
|
ZFS_AC_KERNEL_BLK_QUEUE_NONROT
|
||||||
ZFS_AC_KERNEL_BLK_QUEUE_DISCARD
|
ZFS_AC_KERNEL_BLK_QUEUE_DISCARD
|
||||||
ZFS_AC_KERNEL_BLK_RQ_BYTES
|
ZFS_AC_KERNEL_BLK_RQ_BYTES
|
||||||
ZFS_AC_KERNEL_BLK_RQ_POS
|
|
||||||
ZFS_AC_KERNEL_BLK_RQ_SECTORS
|
ZFS_AC_KERNEL_BLK_RQ_SECTORS
|
||||||
ZFS_AC_KERNEL_GET_DISK_RO
|
ZFS_AC_KERNEL_GET_DISK_RO
|
||||||
ZFS_AC_KERNEL_GET_GENDISK
|
ZFS_AC_KERNEL_GET_GENDISK
|
||||||
|
@ -53,14 +53,6 @@ __blk_queue_flush(struct request_queue *q, unsigned int flags)
|
|||||||
}
|
}
|
||||||
#endif /* HAVE_BLK_QUEUE_FLUSH && HAVE_BLK_QUEUE_FLUSH_GPL_ONLY */
|
#endif /* HAVE_BLK_QUEUE_FLUSH && HAVE_BLK_QUEUE_FLUSH_GPL_ONLY */
|
||||||
|
|
||||||
#ifndef HAVE_BLK_RQ_POS
|
|
||||||
static inline sector_t
|
|
||||||
blk_rq_pos(struct request *req)
|
|
||||||
{
|
|
||||||
return (req->sector);
|
|
||||||
}
|
|
||||||
#endif /* HAVE_BLK_RQ_POS */
|
|
||||||
|
|
||||||
#ifndef HAVE_BLK_RQ_SECTORS
|
#ifndef HAVE_BLK_RQ_SECTORS
|
||||||
static inline unsigned int
|
static inline unsigned int
|
||||||
blk_rq_sectors(struct request *req)
|
blk_rq_sectors(struct request *req)
|
||||||
|
Loading…
Reference in New Issue
Block a user