On Wed, Dec 11, 2013 at 05:38:42PM -0600, Chandra Seetharaman wrote:
> This is the final patch of the series that allows filesystems with
> blocksize smaller than the PAGE_SIZE.
> - if (sectorsize != PAGE_SIZE) {
You've implemented the sectorsize < PAGE_SIZE part (multiple extent
buffers per page), so the check should stay as:
if (sectorsize > PAGE_SIZE) {
> - printk(KERN_WARNING "btrfs: Incompatible sector size(%lu) "
> - "found on %s\n", (unsigned long)sectorsize, sb->s_id);
> - goto fail_sb_buffer;
> - }
> -
> mutex_lock(&fs_info->chunk_mutex);
> ret = btrfs_read_sys_array(tree_root);
> mutex_unlock(&fs_info->chunk_mutex);
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html