Helge Deller 0576da2c08 parisc: fix mmap(MAP_FIXED|MAP_SHARED) to already mmapped address
locale-gen on Debian showed a strange problem on parisc:
mmap2(NULL, 536870912, PROT_NONE, MAP_SHARED, 3, 0) = 0x42a54000
mmap2(0x42a54000, 103860, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_FIXED, 3, 0) = -1 EINVAL (Invalid argument)

Basically it was just trying to re-mmap() a file at the same address
which it was given by a previous mmap() call. But this remapping failed
with EINVAL.

The problem is, that when MAP_FIXED and MAP_SHARED flags were used, we didn't
included the mapping-based offset when we verified the alignment of the given
fixed address against the offset which we calculated it in the previous call.

Signed-off-by: Helge Deller <deller@gmx.de>
Cc: <stable@vger.kernel.org> # 3.10+
2013-11-30 20:57:50 +01:00
..
2013-11-07 22:27:20 +01:00
2013-11-07 22:27:20 +01:00
2013-11-13 12:09:05 +09:00
2013-05-05 00:10:41 -04:00
2013-01-15 22:30:15 -08:00
2010-10-16 22:43:08 +02:00
2013-04-08 17:39:27 +02:00
2013-11-07 22:27:20 +01:00
2008-10-10 16:32:28 +00:00
2013-11-07 22:28:54 +01:00