瀏覽代碼

[XFS] remove unused code from xfs_iomap_write_direct

SGI-PV: 943266
SGI-Modid: xfs-linux:xfs-kern:200996a

Signed-off-by: Eric Sandeen <sandeen@sgi.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Eric Sandeen 19 年之前
父節點
當前提交
e2ed81fbbb
共有 1 個文件被更改,包括 0 次插入8 次删除
  1. 0 8
      fs/xfs/xfs_iomap.c

+ 0 - 8
fs/xfs/xfs_iomap.c

@@ -364,7 +364,6 @@ xfs_iomap_write_direct(
 	xfs_fileoff_t	offset_fsb;
 	xfs_fileoff_t	offset_fsb;
 	xfs_fileoff_t	last_fsb;
 	xfs_fileoff_t	last_fsb;
 	xfs_filblks_t	count_fsb;
 	xfs_filblks_t	count_fsb;
-	xfs_fsize_t	isize;
 	xfs_fsblock_t	firstfsb;
 	xfs_fsblock_t	firstfsb;
 	int		nimaps;
 	int		nimaps;
 	int		error;
 	int		error;
@@ -374,7 +373,6 @@ xfs_iomap_write_direct(
 	xfs_trans_t	*tp;
 	xfs_trans_t	*tp;
 	xfs_bmbt_irec_t imap;
 	xfs_bmbt_irec_t imap;
 	xfs_bmap_free_t free_list;
 	xfs_bmap_free_t free_list;
-	int		aeof;
 	xfs_filblks_t	qblocks, resblks;
 	xfs_filblks_t	qblocks, resblks;
 	int		committed;
 	int		committed;
 	int		resrtextents;
 	int		resrtextents;
@@ -387,12 +385,6 @@ xfs_iomap_write_direct(
 	if (error)
 	if (error)
 		return XFS_ERROR(error);
 		return XFS_ERROR(error);
 
 
-	isize = ip->i_d.di_size;
-	aeof = (offset + count) > isize;
-
-	if (io->io_new_size > isize)
-		isize = io->io_new_size;
-
 	offset_fsb = XFS_B_TO_FSBT(mp, offset);
 	offset_fsb = XFS_B_TO_FSBT(mp, offset);
 	last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
 	last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
 	count_fsb = last_fsb - offset_fsb;
 	count_fsb = last_fsb - offset_fsb;