mmap engine: remove unused variable mmap_map_mask
authorRoss Zwisler <ross.zwisler@linux.intel.com>
Mon, 5 Dec 2016 16:45:06 +0000 (09:45 -0700)
committerJens Axboe <axboe@fb.com>
Mon, 5 Dec 2016 16:48:08 +0000 (09:48 -0700)
commit487197d9e8f3aa0f135a6d88e5f222a1a930723a
tree17513ddedbc73533c641e507c352de11abe7fa63
parent6be06c46544c19e513ff80e7b841b1de688ffc66
mmap engine: remove unused variable mmap_map_mask

The global variable 'mmap_map_mask' was introduced in this commit:

commit ac8931124126 ("mmap engine: allow large files on 32-bit archs")

and was used in fio_mmapio_prep() to calculate f->mmap_off.  This usage was
removed in this commit:

commit ff455a04f4e7 ("mmap engine: fix for large files on 32-bit archs")

but the definition and setup code for 'mmap_map_mask' were left intact.

Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
engines/mmap.c