Re: [PATCH] ps3vram: remove bio splitting

2023-01-23 Thread Jens Axboe
On Mon, 23 Jan 2023 08:47:18 +0100, Christoph Hellwig wrote: > ps3vram iterates over the bio one segment, that is page aligned and max > page sized chunk, a time. Because of that there is no point in > calling bio_split_to_limits, or explicitly setting the default limits > that are only used by

Re: [PATCH] ps3vram: remove bio splitting

2023-01-23 Thread Geoff Levand
Hi Christoph, On 1/22/23 23:47, Christoph Hellwig wrote: > ps3vram iterates over the bio one segment, that is page aligned and max > page sized chunk, a time. Because of that there is no point in > calling bio_split_to_limits, or explicitly setting the default limits > that are only used by

[PATCH] ps3vram: remove bio splitting

2023-01-22 Thread Christoph Hellwig
ps3vram iterates over the bio one segment, that is page aligned and max page sized chunk, a time. Because of that there is no point in calling bio_split_to_limits, or explicitly setting the default limits that are only used by bio_split_to_limits. Signed-off-by: Christoph Hellwig ---