Commit 4991e725 authored by Artem Bityutskiy's avatar Artem Bityutskiy Committed by David Woodhouse

romfs: do not use mtd->get_unmapped_area directly

Remove direct usage of mtd->get_unmapped_area. Instead, just call
'mtd_get_unmapped_area()' which will return -EOPNOTSUPP if the function
is not implemented, and then test for this code.

We also translate -EOPNOTSUPP to -ENOSYS because this return code is
probably part of the kernel ABI which we do not want to break.

Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent cd621274
...@@ -28,9 +28,10 @@ static unsigned long romfs_get_unmapped_area(struct file *file, ...@@ -28,9 +28,10 @@ static unsigned long romfs_get_unmapped_area(struct file *file,
struct inode *inode = file->f_mapping->host; struct inode *inode = file->f_mapping->host;
struct mtd_info *mtd = inode->i_sb->s_mtd; struct mtd_info *mtd = inode->i_sb->s_mtd;
unsigned long isize, offset, maxpages, lpages; unsigned long isize, offset, maxpages, lpages;
int ret;
if (!mtd) if (!mtd)
goto cant_map_directly; return (unsigned long) -ENOSYS;
/* the mapping mustn't extend beyond the EOF */ /* the mapping mustn't extend beyond the EOF */
lpages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT; lpages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
...@@ -41,23 +42,20 @@ static unsigned long romfs_get_unmapped_area(struct file *file, ...@@ -41,23 +42,20 @@ static unsigned long romfs_get_unmapped_area(struct file *file,
if ((pgoff >= maxpages) || (maxpages - pgoff < lpages)) if ((pgoff >= maxpages) || (maxpages - pgoff < lpages))
return (unsigned long) -EINVAL; return (unsigned long) -EINVAL;
/* we need to call down to the MTD layer to do the actual mapping */ if (addr != 0)
if (mtd->get_unmapped_area) { return (unsigned long) -EINVAL;
if (addr != 0)
return (unsigned long) -EINVAL;
if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
return (unsigned long) -EINVAL;
offset += ROMFS_I(inode)->i_dataoffset; if (len > mtd->size || pgoff >= (mtd->size >> PAGE_SHIFT))
if (offset > mtd->size - len) return (unsigned long) -EINVAL;
return (unsigned long) -EINVAL;
return mtd_get_unmapped_area(mtd, len, offset, flags); offset += ROMFS_I(inode)->i_dataoffset;
} if (offset > mtd->size - len)
return (unsigned long) -EINVAL;
cant_map_directly: ret = mtd_get_unmapped_area(mtd, len, offset, flags);
return (unsigned long) -ENOSYS; if (ret == -EOPNOTSUPP)
ret = -ENOSYS;
return (unsigned long) ret;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment