Skip to content

Commit

Permalink
Merge pull request #1552 from mmichal10/fix-mq-req-type-detection
Browse files Browse the repository at this point in the history
Fix mq req type detection
  • Loading branch information
robertbaldyga authored Oct 3, 2024
2 parents 2a536b0 + e6d8af6 commit 865967e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions configure.d/1_make_req_type.conf
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ check() {
# specific scenario
# Mind the negation in the condition
if ! compile_module $cur_name \
"struct request_queue *q; int y = (int)q->make_request_fn(NULL);" "linux/blkdev.h";
"struct request_queue *q; int y = (int)q->make_request_fn(NULL, NULL);" "linux/blkdev.h";
then
# make_request_fn is of type void
echo $cur_name "3" >> $config_file_path
elif ! compile_module $cur_name \
"struct request_queue *q; blk_qc_t y = q->make_request_fn(NULL);" "linux/blkdev.h";
elif compile_module $cur_name \
"struct request_queue *q; blk_qc_t y = q->make_request_fn(NULL, NULL);" "linux/blkdev.h";
then
# make_request_fn is of type blk_qc_t
echo $cur_name "4" >> $config_file_path
elif ! compile_module $cur_name \
"struct request_queue *q; int y = q->make_request_fn(NULL);" "linux/blkdev.h";
elif compile_module $cur_name \
"struct request_queue *q; int y = q->make_request_fn(NULL, NULL);" "linux/blkdev.h";
then
# make_request_fn is of type int
echo $cur_name "5" >> $config_file_path
Expand Down

0 comments on commit 865967e

Please sign in to comment.