sparc64: Fix offset calculation in compute_size()

The fault address is somewhere inside of the buffer, not
before it.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2008-12-01 02:48:26 -08:00
parent be1ffce352
commit b270ee8a9f

View file

@ -24,7 +24,7 @@ static unsigned long compute_size(unsigned long start, unsigned long size, unsig
if (fault_addr < start || fault_addr >= end) {
*offset = 0;
} else {
*offset = start - fault_addr;
*offset = fault_addr - start;
size = end - fault_addr;
}
return size;