On Tue, Dec 18, 2018 at 07:06:17PM +0100, Christoph Hellwig wrote: > On Mon, Dec 17, 2018 at 05:45:10PM -0600, Eric Sandeen wrote: > > Then we should hard code "512" in iomap_page_create I guess. Just need > > consistency. > > Fine with me. Please don't just hardcode 512 here. AFAICT the usage in iomap.c seems to be "minimum expected fs block size" so that the iop's uptodate bitmap is sized to handle the worst case blocks-per-page. Can we please have a "#define IOMAP_MIN_FS_BLOCKSIZE SECTOR_SIZE" to capture the intent behind the 512? Or, if you don't want to require all includers of iomap.h to also have to include blkdev.h, define it to 512 and have a BUILD_BUG_ON somewhere so that we don't leave a subtle bug if we ever change SECTOR_SIZE? --D