Prev: [134/200] vmware balloon: clamp number of collected non-balloonable pages
Next: [092/200] eeepc-wmi: depends on BACKLIGHT_CLASS_DEVICE
From: Greg KH on 1 Jul 2010 17:50 2.6.34-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dan Carpenter <error27(a)gmail.com> commit ddf08f4b90a413892bbb9bb2e8a57aed991cd47d upstream. For kmap_atomic() we call kunmap_atomic() on the returned pointer. That's different from kmap() and kunmap() and so it's easy to get them backwards. Signed-off-by: Dan Carpenter <error27(a)gmail.com> Signed-off-by: Boaz Harrosh <bharrosh(a)panasas.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- fs/exofs/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/exofs/dir.c +++ b/fs/exofs/dir.c @@ -608,7 +608,7 @@ int exofs_make_empty(struct inode *inode de->inode_no = cpu_to_le64(parent->i_ino); memcpy(de->name, PARENT_DIR, sizeof(PARENT_DIR)); exofs_set_de_type(de, inode); - kunmap_atomic(page, KM_USER0); + kunmap_atomic(kaddr, KM_USER0); err = exofs_commit_chunk(page, 0, chunk_size); fail: page_cache_release(page); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |