On Tue, Sep 05, 2023 at 02:51:57PM -0700, Omar Sandoval wrote: > + if (maxlog == 0) > + maxblocks = 0; > + else if (maxlog < mp->m_blkbit_log) > + maxblocks = 1; > + else > + maxblocks = 2 << (maxlog - mp->m_blkbit_log); Overly long line here (can be fixed when applying I guess). Otherwise looks good: Reviewed-by: Christoph Hellwig <hch@xxxxxx>