aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColy Li <colyli@suse.de>2022-09-20 18:32:03 +0800
committerColy Li <colyli@suse.de>2022-09-20 18:32:03 +0800
commit94559fbf1632bd111ccfdd449dcd346d36fe553c (patch)
treec839392393bd903451da0e62e353abdc7dac0def
parentfc7e6f919ffdd3ecfe4a31a9c99969718b24dd50 (diff)
downloadbcache-patches-94559fbf1632bd111ccfdd449dcd346d36fe553c.tar.gz
for-next: remove already merged patches
-rw-r--r--for-next/0001-bcache-remove-unnecessary-flush_workqueue.patch34
-rw-r--r--for-next/0002-bcache-bset-Fix-comment-typos.patch31
-rw-r--r--for-next/0003-bcache-fix-repeated-words-in-comments.patch29
3 files changed, 0 insertions, 94 deletions
diff --git a/for-next/0001-bcache-remove-unnecessary-flush_workqueue.patch b/for-next/0001-bcache-remove-unnecessary-flush_workqueue.patch
deleted file mode 100644
index 44de4b7..0000000
--- a/for-next/0001-bcache-remove-unnecessary-flush_workqueue.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 4bed8e79117b263a292e702e860c979819940866 Mon Sep 17 00:00:00 2001
-From: Li Lei <noctis.akm@gmail.com>
-Date: Sun, 27 Mar 2022 15:20:38 +0800
-Subject: [PATCH 1/3] bcache: remove unnecessary flush_workqueue
-
-All pending works will be drained by destroy_workqueue(), no need to call
-flush_workqueue() explicitly.
-
-Signed-off-by: Li Lei <lilei@szsandstone.com>
-Signed-off-by: Coly Li <colyli@suse.de>
----
- drivers/md/bcache/writeback.c | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/drivers/md/bcache/writeback.c b/drivers/md/bcache/writeback.c
-index 3f0ff3aab6f2..647661005176 100644
---- a/drivers/md/bcache/writeback.c
-+++ b/drivers/md/bcache/writeback.c
-@@ -801,10 +801,9 @@ static int bch_writeback_thread(void *arg)
- }
- }
-
-- if (dc->writeback_write_wq) {
-- flush_workqueue(dc->writeback_write_wq);
-+ if (dc->writeback_write_wq)
- destroy_workqueue(dc->writeback_write_wq);
-- }
-+
- cached_dev_put(dc);
- wait_for_kthread_stop();
-
---
-2.35.3
-
diff --git a/for-next/0002-bcache-bset-Fix-comment-typos.patch b/for-next/0002-bcache-bset-Fix-comment-typos.patch
deleted file mode 100644
index 66352f1..0000000
--- a/for-next/0002-bcache-bset-Fix-comment-typos.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 6b4f5e17668964de77535b23599a02e4f1fb48dd Mon Sep 17 00:00:00 2001
-From: Jules Maselbas <jmaselbas@kalray.eu>
-Date: Fri, 26 Aug 2022 12:00:52 +0200
-Subject: [PATCH 2/3] bcache: bset: Fix comment typos
-
-Remove the redundant word `by`, correct the typo `creaated`.
-
-CC: Kent Overstreet <kent.overstreet@gmail.com>
-CC: linux-bcache@vger.kernel.org
-Signed-off-by: Jules Maselbas <jmaselbas@kalray.eu>
-Signed-off-by: Coly Li <colyli@suse.de>
----
- drivers/md/bcache/bset.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/md/bcache/bset.c b/drivers/md/bcache/bset.c
-index 94d38e8a59b3..2bba4d6aaaa2 100644
---- a/drivers/md/bcache/bset.c
-+++ b/drivers/md/bcache/bset.c
-@@ -1264,7 +1264,7 @@ static void __btree_sort(struct btree_keys *b, struct btree_iter *iter,
- *
- * Don't worry event 'out' is allocated from mempool, it can
- * still be swapped here. Because state->pool is a page mempool
-- * creaated by by mempool_init_page_pool(), which allocates
-+ * created by mempool_init_page_pool(), which allocates
- * pages by alloc_pages() indeed.
- */
-
---
-2.35.3
-
diff --git a/for-next/0003-bcache-fix-repeated-words-in-comments.patch b/for-next/0003-bcache-fix-repeated-words-in-comments.patch
deleted file mode 100644
index 0a608a8..0000000
--- a/for-next/0003-bcache-fix-repeated-words-in-comments.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From f5d451f36d1c20fdc63dfdb48e32aefdf447659e Mon Sep 17 00:00:00 2001
-From: Jilin Yuan <yuanjilin@cdjrlc.com>
-Date: Tue, 30 Aug 2022 23:30:26 +0800
-Subject: [PATCH 3/3] bcache:: fix repeated words in comments
-
-Delete the redundant word 'we'.
-
-Signed-off-by: Jilin Yuan <yuanjilin@cdjrlc.com>
-Signed-off-by: Coly Li <colyli@suse.de>
----
- drivers/md/bcache/bcache.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/md/bcache/bcache.h b/drivers/md/bcache/bcache.h
-index 2acda9cea0f9..aebb7ef10e63 100644
---- a/drivers/md/bcache/bcache.h
-+++ b/drivers/md/bcache/bcache.h
-@@ -107,7 +107,7 @@
- *
- * BTREE NODES:
- *
-- * Our unit of allocation is a bucket, and we we can't arbitrarily allocate and
-+ * Our unit of allocation is a bucket, and we can't arbitrarily allocate and
- * free smaller than a bucket - so, that's how big our btree nodes are.
- *
- * (If buckets are really big we'll only use part of the bucket for a btree node
---
-2.35.3
-