* [PATCH] block: Delete blk_queue_flag_test_and_set()
@ 2024-06-27 16:07 John Garry
2024-06-27 22:11 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: John Garry @ 2024-06-27 16:07 UTC (permalink / raw)
To: axboe; +Cc: linux-block, hch, John Garry
Since commit 70200574cc22 ("block: remove QUEUE_FLAG_DISCARD"),
blk_queue_flag_test_and_set() has not been used, so delete it.
Signed-off-by: John Garry <john.g.garry@oracle.com>
diff --git a/block/blk-core.c b/block/blk-core.c
index 6fc1a5a1980d..71b7622c523a 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -94,20 +94,6 @@ void blk_queue_flag_clear(unsigned int flag, struct request_queue *q)
}
EXPORT_SYMBOL(blk_queue_flag_clear);
-/**
- * blk_queue_flag_test_and_set - atomically test and set a queue flag
- * @flag: flag to be set
- * @q: request queue
- *
- * Returns the previous value of @flag - 0 if the flag was not set and 1 if
- * the flag was already set.
- */
-bool blk_queue_flag_test_and_set(unsigned int flag, struct request_queue *q)
-{
- return test_and_set_bit(flag, &q->queue_flags);
-}
-EXPORT_SYMBOL_GPL(blk_queue_flag_test_and_set);
-
#define REQ_OP_NAME(name) [REQ_OP_##name] = #name
static const char *const blk_op_name[] = {
REQ_OP_NAME(READ),
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index a53e3434e1a2..53c41ef4222c 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -609,7 +609,6 @@ struct request_queue {
void blk_queue_flag_set(unsigned int flag, struct request_queue *q);
void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
-bool blk_queue_flag_test_and_set(unsigned int flag, struct request_queue *q);
#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
#define blk_queue_dying(q) test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
--
2.31.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] block: Delete blk_queue_flag_test_and_set()
2024-06-27 16:07 [PATCH] block: Delete blk_queue_flag_test_and_set() John Garry
@ 2024-06-27 22:11 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2024-06-27 22:11 UTC (permalink / raw)
To: John Garry; +Cc: linux-block, hch
On Thu, 27 Jun 2024 16:07:35 +0000, John Garry wrote:
> Since commit 70200574cc22 ("block: remove QUEUE_FLAG_DISCARD"),
> blk_queue_flag_test_and_set() has not been used, so delete it.
>
>
Applied, thanks!
[1/1] block: Delete blk_queue_flag_test_and_set()
commit: 63db4a1f795a19e4e12f036a12a5f61c48b03e5c
Best regards,
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-27 22:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-27 16:07 [PATCH] block: Delete blk_queue_flag_test_and_set() John Garry
2024-06-27 22:11 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox