Re: [PATCH 5/8] fs: xfs: replace BIO_MAX_SECTORS with BIO_MAX_PAGES

From: Christoph Hellwig
Date: Tue Mar 29 2016 - 03:29:39 EST


> + nr_pages = BIO_MAX_PAGES;
> if (nr_pages > total_nr_pages)
> nr_pages = total_nr_pages;

Looks reasonable, but the whole thing could simply become:

nr_pages = min(total_nr_pages, BIO_MAX_PAGES);