[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87wqjod97k.fsf@devron.myhome.or.jp>
Date: Sun, 01 Dec 2013 21:52:47 +0900
From: OGAWA Hirofumi <hirofumi@...l.parknet.co.jp>
To: Namjae Jeon <linkinjeon@...il.com>
Cc: akpm@...ux-foundation.org, linux-fsdevel@...r.kernel.org,
linux-kernel@...r.kernel.org,
Namjae Jeon <namjae.jeon@...sung.com>,
Amit Sahrawat <a.sahrawat@...sung.com>
Subject: Re: [PATCH v2 5/5] fat: permit to return phy block number by fibmap in fallocated region
Namjae Jeon <linkinjeon@...il.com> writes:
> diff --git a/fs/fat/cache.c b/fs/fat/cache.c
> index c56bd7e..7777822 100644
> --- a/fs/fat/cache.c
> +++ b/fs/fat/cache.c
> @@ -312,6 +312,7 @@ int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys,
> const unsigned char blocksize_bits = sb->s_blocksize_bits;
> sector_t last_block;
> int cluster, offset;
> + loff_t i_size = i_size_read(inode);
>
> *phys = 0;
> *mapped_blocks = 0;
> @@ -323,10 +324,20 @@ int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys,
> return 0;
> }
>
> - last_block = (i_size_read(inode) + (blocksize - 1)) >> blocksize_bits;
> + last_block = (i_size + (blocksize - 1)) >> blocksize_bits;
> if (sector >= last_block) {
> - if (!create)
> + if (!create) {
> + /*
> + * to map cluster in case of read request
> + * for a block in fallocated region
> + */
> + if (MSDOS_I(inode)->i_disksize >
> + round_up(i_size, sb->s_blocksize)) {
> + goto out_map_cluster;
> + }
Said on another reply though, we will have to add new flag for
this. Because normal read get_block() operation should not return
mapping beyond ->i_size.
> /* fat_get_cluster() assumes the requested blocknr isn't truncated. */
> - down_read(&MSDOS_I(mapping->host)->truncate_lock);
> + mutex_lock(&mapping->host->i_mutex);
> blocknr = generic_block_bmap(mapping, block, fat_get_block);
> - up_read(&MSDOS_I(mapping->host)->truncate_lock);
> + mutex_unlock(&mapping->host->i_mutex);
>
> return blocknr;
> }
->i_mutex doesn't work for swapfile.
--
OGAWA Hirofumi <hirofumi@...l.parknet.co.jp>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists