Re: [Cluster-devel] [PATCH v2 04/14] gfs2: replace ll_rw_block()

2022-09-05 Thread Andreas Gruenbacher
On Thu, Sep 1, 2022 at 3:24 PM Zhang Yi wrote: > ll_rw_block() is not safe for the sync read path because it cannot > guarantee that always submitting read IO if the buffer has been locked, > so stop using it. We also switch to new bh_readahead() helper for the > readahead path. > > Signed-off-by:

Re: [Cluster-devel] [PATCH v2 04/14] gfs2: replace ll_rw_block()

2022-09-04 Thread Christoph Hellwig
Looks good: Reviewed-by: Christoph Hellwig

Re: [Cluster-devel] [PATCH v2 04/14] gfs2: replace ll_rw_block()

2022-09-01 Thread Jan Kara
On Thu 01-09-22 21:34:55, Zhang Yi wrote: > ll_rw_block() is not safe for the sync read path because it cannot > guarantee that always submitting read IO if the buffer has been locked, > so stop using it. We also switch to new bh_readahead() helper for the > readahead path. > > Signed-off-by: Zhan