-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Robert Baldyga <[email protected]> Signed-off-by: Kamil Gierszewski <[email protected]>
- Loading branch information
1 parent
32321b1
commit 4f196e8
Showing
14 changed files
with
632 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright(c) 2012-2022 Intel Corporation | ||
# Copyright(c) 2024 Huawei Technologies | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
. $(dirname $3)/conf_framework.sh | ||
|
||
check() { | ||
cur_name=$(basename $2) | ||
config_file_path=$1 | ||
if compile_module $cur_name "blk_queue_max_discard_sectors(NULL, 0);" "linux/blkdev.h" | ||
then | ||
echo $cur_name "1" >> $config_file_path | ||
else | ||
echo $cur_name "2" >> $config_file_path | ||
fi | ||
} | ||
|
||
apply() { | ||
case "$1" in | ||
"1") | ||
add_function " | ||
static inline void cas_queue_max_discard_sectors( | ||
struct request_queue *q, | ||
unsigned int max_discard_sectors) | ||
{ | ||
blk_queue_max_discard_sectors(q, max_discard_sectors); | ||
}" ;; | ||
"2") | ||
add_function " | ||
static inline void cas_queue_max_discard_sectors( | ||
struct request_queue *q, | ||
unsigned int max_discard_sectors) | ||
{ | ||
struct queue_limits *lim = &q->limits; | ||
lim->max_hw_discard_sectors = max_discard_sectors; | ||
lim->max_discard_sectors = | ||
min(max_discard_sectors, lim->max_user_discard_sectors); | ||
}" ;; | ||
*) | ||
exit 1 | ||
esac | ||
} | ||
|
||
conf_run $@ |
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,39 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright(c) 2012-2022 Intel Corporation | ||
# Copyright(c) 2024 Huawei Technologies | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
. $(dirname $3)/conf_framework.sh | ||
|
||
check() { | ||
cur_name=$(basename $2) | ||
config_file_path=$1 | ||
if compile_module $cur_name "(int)QUEUE_FLAG_NONROT;" "linux/blkdev.h" | ||
then | ||
echo $cur_name "1" >> $config_file_path | ||
else | ||
echo $cur_name "2" >> $config_file_path | ||
fi | ||
} | ||
|
||
apply() { | ||
case "$1" in | ||
"1") | ||
add_function " | ||
static inline void cas_queue_set_nonrot(struct request_queue *q) | ||
{ | ||
q->queue_flags |= (1 << QUEUE_FLAG_NONROT); | ||
}" ;; | ||
"2") | ||
add_function " | ||
static inline void cas_queue_set_nonrot(struct request_queue *q) | ||
{ | ||
}" ;; | ||
*) | ||
exit 1 | ||
esac | ||
} | ||
|
||
conf_run $@ |
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.