Re: [PATCH] bcache: Use a folio

2025-06-20 Thread Coly Li
to compound_head(), just moves them around. > > Signed-off-by: Matthew Wilcox (Oracle) Acked-back: Coly Li The patch looks fine and works well. If you want this patch to go upstream by your path, please add my Acked-by. Otherwise I can submit it to Jens with my Signed-of

Re: [PATCH] bcache: Use a folio

2025-06-15 Thread Coly Li
to compound_head(), just moves them around. > > Signed-off-by: Matthew Wilcox (Oracle) Hi Matthew, Overall the patch is fine to me. I will reply you after doing some basic testing. Thanks. Coly Li > --- > drivers/md/bcache/super.c | 22 +++--- > 1 file changed

Re: [PATCH 07/17] bcache: use bio_add_virt_nofail

2025-04-28 Thread Coly Li
> 2025年4月24日 14:14,Damien Le Moal 写道: > > On 4/22/25 23:26, Christoph Hellwig wrote: >> Convert the __bio_add_page(..., virt_to_page(), ...) pattern to the >> bio_add_virt_nofail helper implementing it. >> >> Signed-off-by: Christoph Hellwig For bcache

Re: [PATCH 2/2] block: Delete bio_set_prio()

2024-12-02 Thread Coly Li
DIV_ROUND_UP(KEY_SIZE(&w->key), PAGE_SECTORS), 0); > if (!io->dc->writeback_percent) > - bio_set_prio(bio, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0)); > + bio->bi_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0); > > bio->bi_iter.bi_size= KEY_SIZE(&w->key) << 9; > bio->bi_private = w; For bcache part, Acked-by: Coly Li Thanks. Coly Li

Re: [PATCH 0/3] Enhance min heap API with non-inline functions and optimizations

2024-10-13 Thread Coly Li
consolidate how our subsystems > are getting tested; I can give you a CI account as well. Yes, please do. And let me take a look at the test cases for bcache part. Thanks. Coly Li

Re: [PATCH v1] md: Correct typos in multiple comments across various files

2024-09-25 Thread Coly Li
est to split this patch into multiple ones by different subsystem, it may be easier for downstream developers to do their backport. Thanks. Coly Li

Re: [PATCH v3 00/17] treewide: Refactor heap related implementation

2024-04-09 Thread Coly Li
/ci?branch=refactor-heap-v3 > > Coli, could I get some acks from you? Yes, the code tested and Acked-by sent. Thanks. Coly Li

Re: [PATCH v3 16/17] bcache: Remove heap-related macros and switch to generic min_heap

2024-04-09 Thread Coly Li
er of swaps, thus making it more efficient. > > Link: > https://lkml.kernel.org/ioyfizrzq7w7mjrqcadtzsfgpuntowtjdw5pgn4qhvsdp4mqqg@nrlek5vmisbu > Signed-off-by: Kuan-Wei Chiu > Reviewed-by: Ian Rogers For the bcache replacement part, Acked-by: Coly Li Thanks. Coly Li > -

Re: [PATCH v3 16/17] bcache: Remove heap-related macros and switch to generic min_heap

2024-04-09 Thread Coly Li
er of swaps, thus making it more efficient. > > Link: > https://lkml.kernel.org/ioyfizrzq7w7mjrqcadtzsfgpuntowtjdw5pgn4qhvsdp4mqqg@nrlek5vmisbu > Signed-off-by: Kuan-Wei Chiu > Reviewed-by: Ian Rogers Acked-by: Coly Li Thanks. Coly Li > --- > Changes in v3: > - Correc