mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	config: remove HAVE_BLK_QUEUE_FLAG_*
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes #16479
This commit is contained in:
		
							parent
							
								
									ec48dd0976
								
							
						
					
					
						commit
						1bf93713d8
					
				| @ -203,52 +203,6 @@ AC_DEFUN([ZFS_AC_KERNEL_BLK_QUEUE_SECURE_ERASE], [ | ||||
| 	]) | ||||
| ]) | ||||
| 
 | ||||
| dnl # | ||||
| dnl # 4.16 API change, | ||||
| dnl # Introduction of blk_queue_flag_set and blk_queue_flag_clear | ||||
| dnl # | ||||
| AC_DEFUN([ZFS_AC_KERNEL_SRC_BLK_QUEUE_FLAG_SET], [ | ||||
| 	ZFS_LINUX_TEST_SRC([blk_queue_flag_set], [ | ||||
| 		#include <linux/kernel.h> | ||||
| 		#include <linux/blkdev.h> | ||||
| 	],[ | ||||
| 		struct request_queue *q = NULL; | ||||
| 		blk_queue_flag_set(0, q); | ||||
| 	]) | ||||
| ]) | ||||
| 
 | ||||
| AC_DEFUN([ZFS_AC_KERNEL_BLK_QUEUE_FLAG_SET], [ | ||||
| 	AC_MSG_CHECKING([whether blk_queue_flag_set() exists]) | ||||
| 	ZFS_LINUX_TEST_RESULT([blk_queue_flag_set], [ | ||||
| 		AC_MSG_RESULT(yes) | ||||
| 		AC_DEFINE(HAVE_BLK_QUEUE_FLAG_SET, 1, | ||||
| 		    [blk_queue_flag_set() exists]) | ||||
| 	],[ | ||||
| 		AC_MSG_RESULT(no) | ||||
| 	]) | ||||
| ]) | ||||
| 
 | ||||
| AC_DEFUN([ZFS_AC_KERNEL_SRC_BLK_QUEUE_FLAG_CLEAR], [ | ||||
| 	ZFS_LINUX_TEST_SRC([blk_queue_flag_clear], [ | ||||
| 		#include <linux/kernel.h> | ||||
| 		#include <linux/blkdev.h> | ||||
| 	],[ | ||||
| 		struct request_queue *q = NULL; | ||||
| 		blk_queue_flag_clear(0, q); | ||||
| 	]) | ||||
| ]) | ||||
| 
 | ||||
| AC_DEFUN([ZFS_AC_KERNEL_BLK_QUEUE_FLAG_CLEAR], [ | ||||
| 	AC_MSG_CHECKING([whether blk_queue_flag_clear() exists]) | ||||
| 	ZFS_LINUX_TEST_RESULT([blk_queue_flag_clear], [ | ||||
| 		AC_MSG_RESULT(yes) | ||||
| 		AC_DEFINE(HAVE_BLK_QUEUE_FLAG_CLEAR, 1, | ||||
| 		    [blk_queue_flag_clear() exists]) | ||||
| 	],[ | ||||
| 		AC_MSG_RESULT(no) | ||||
| 	]) | ||||
| ]) | ||||
| 
 | ||||
| dnl # | ||||
| dnl # 2.6.34 API change | ||||
| dnl # blk_queue_max_hw_sectors() replaces blk_queue_max_sectors(). | ||||
| @ -346,8 +300,6 @@ AC_DEFUN([ZFS_AC_KERNEL_SRC_BLK_QUEUE], [ | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_UPDATE_READAHEAD | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_DISCARD | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_SECURE_ERASE | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_FLAG_SET | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_FLAG_CLEAR | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_MAX_HW_SECTORS | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_QUEUE_MAX_SEGMENTS | ||||
| 	ZFS_AC_KERNEL_SRC_BLK_MQ | ||||
| @ -360,8 +312,6 @@ AC_DEFUN([ZFS_AC_KERNEL_BLK_QUEUE], [ | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_UPDATE_READAHEAD | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_DISCARD | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_SECURE_ERASE | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_FLAG_SET | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_FLAG_CLEAR | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_MAX_HW_SECTORS | ||||
| 	ZFS_AC_KERNEL_BLK_QUEUE_MAX_SEGMENTS | ||||
| 	ZFS_AC_KERNEL_BLK_MQ | ||||
|  | ||||
| @ -40,21 +40,6 @@ | ||||
| #include <linux/blk-mq.h> | ||||
| #endif | ||||
| 
 | ||||
| #ifndef HAVE_BLK_QUEUE_FLAG_SET | ||||
| static inline void | ||||
| blk_queue_flag_set(unsigned int flag, struct request_queue *q) | ||||
| { | ||||
| 	queue_flag_set(flag, q); | ||||
| } | ||||
| #endif | ||||
| 
 | ||||
| #ifndef HAVE_BLK_QUEUE_FLAG_CLEAR | ||||
| static inline void | ||||
| blk_queue_flag_clear(unsigned int flag, struct request_queue *q) | ||||
| { | ||||
| 	queue_flag_clear(flag, q); | ||||
| } | ||||
| #endif | ||||
| 
 | ||||
| /*
 | ||||
|  * 6.11 API | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Rob Norris
						Rob Norris