Commit 190a4408 authored by Jean-Christophe Dubois's avatar Jean-Christophe Dubois Committed by Paul Mackerras

[POWERPC] Fix dcr_unmap()

Fix a bug in dcr_unmap().

At unmap time the DCR offset need to be added instead of substracted.
Signed-off-by: default avatarJean-Christophe Dubois <jdubois@mc.com>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent e5c465f5
......@@ -129,7 +129,7 @@ void dcr_unmap(dcr_host_t host, unsigned int dcr_n, unsigned int dcr_c)
if (h.token == NULL)
return;
h.token -= dcr_n * h.stride;
h.token += dcr_n * h.stride;
iounmap(h.token);
h.token = NULL;
}
......
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