Rename Fiemap.py to Filemap.py
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 16 Jan 2014 10:56:20 +0000 (12:56 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Thu, 16 Jan 2014 11:31:20 +0000 (13:31 +0200)
commit84a2cb0dd94d290cebbbde84c44ef421ef3088cb
treebe6cbfcc23e71e6561df457660189bd10b86634f
parent4fbbde00fae42d45140ab6000ed144bb2d78173a
Rename Fiemap.py to Filemap.py

The FIEMAP ioctl is not supported by tmpfs, so currently bmaptool fails to
create the bmap file when the file resides on tmpfs. This is unfortunate.

However, tmpfs supports 'SEEK_HOLE' which we can use instead of FIEMAP.

This patch is a preparation for adding 'SEEK_HOLE' support. Namely, we re-name
the Fiemap.py module to Filemap.py, where we'll support both FIEMAP and
SEEK_HOLE. Variables which contain 'fiemap' are also re-named so that they now
contain 'filemap' instead.

Change-Id: I20eac7adbdc3ad6d39c8ce5b67a5cbdbdf2987be
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
bmaptools/BmapCreate.py
bmaptools/Fiemap.py [deleted file]
bmaptools/Filemap.py [new file with mode: 0644]
docs/README
tests/helpers.py
tests/test_api_base.py
tests/test_fiemap.py [deleted file]
tests/test_filemap.py [new file with mode: 0644]