diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-05-05 12:08:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-05-05 12:08:02 -0700 |
commit | e91b3b2681148371d84b9cdf4cab6f9de0522544 (patch) | |
tree | 3b14f9abef903f70dbd48540cebb1da041cc01ac /arch | |
parent | 5e30302b9ee75a01d65d8dcf4085254a5da1066d (diff) | |
parent | 33015c85995716d03f6293346cf05a1908b0fb9a (diff) | |
download | linux-3.10-e91b3b2681148371d84b9cdf4cab6f9de0522544.tar.gz linux-3.10-e91b3b2681148371d84b9cdf4cab6f9de0522544.tar.bz2 linux-3.10-e91b3b2681148371d84b9cdf4cab6f9de0522544.zip |
Merge branch 'tracing-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'tracing-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
tracing: x86, mmiotrace: fix range test
tracing: fix ref count in splice pages
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/kmmio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/kmmio.c b/arch/x86/mm/kmmio.c index 4f115e00486..50dc802a1c4 100644 --- a/arch/x86/mm/kmmio.c +++ b/arch/x86/mm/kmmio.c @@ -87,7 +87,7 @@ static struct kmmio_probe *get_kmmio_probe(unsigned long addr) { struct kmmio_probe *p; list_for_each_entry_rcu(p, &kmmio_probes, list) { - if (addr >= p->addr && addr <= (p->addr + p->len)) + if (addr >= p->addr && addr < (p->addr + p->len)) return p; } return NULL; |