Re: [PATCH 11/13] block: Remove ignore_bds_parents parameter from drain functions

2022-11-14 Thread Hanna Reitz
On 08.11.22 13:37, Kevin Wolf wrote: ignore_bds_parents is now ignored, so we can just remove it. Signed-off-by: Kevin Wolf --- include/block/block-io.h | 10 ++ block.c | 4 +-- block/io.c | 78 +++- 3 files changed,

Re: [PATCH 11/13] block: Remove ignore_bds_parents parameter from drain functions

2022-11-09 Thread Vladimir Sementsov-Ogievskiy
On 11/8/22 15:37, Kevin Wolf wrote: ignore_bds_parents is now ignored, so we can just remove it.> Signed-off-by: Kevin Wolf Not obvious to me that they are ignored, some logic is still here. Maybe it's all do nothing finally. Still I believe that we should get rid of ignore_bds_parents anyway

[PATCH 11/13] block: Remove ignore_bds_parents parameter from drain functions

2022-11-08 Thread Kevin Wolf
ignore_bds_parents is now ignored, so we can just remove it. Signed-off-by: Kevin Wolf --- include/block/block-io.h | 10 ++ block.c | 4 +-- block/io.c | 78 +++- 3 files changed, 32 insertions(+), 60 deletions(-) diff --g