* [PATCH] 2.4.13pre3: &i_mapping used where i_mapping needed
@ 2001-10-17 18:36 Chip Salzenberg
0 siblings, 0 replies; only message in thread
From: Chip Salzenberg @ 2001-10-17 18:36 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Linux Kernel
[-- Attachment #1: Type: text/plain, Size: 343 bytes --]
In 2.4.13pre3, mm/filemap.c:mincore_page() sets an address_space
pointer to &inode->i_mapping. This is almost surely an error, because
i_mapping is already a pointer.
A minimal patch is attached.
--
Chip Salzenberg - a.k.a. - <chip@pobox.com>
"We have no fuel on board, plus or minus 8 kilograms." -- NEAR tech
[-- Attachment #2: pre3-mapping-typo-1 --]
[-- Type: text/plain, Size: 386 bytes --]
Index: linux/mm/filemap.c
--- linux/mm/filemap.c.old Tue Oct 16 23:29:08 2001
+++ linux/mm/filemap.c Wed Oct 17 00:26:37 2001
@@ -2449,5 +2449,5 @@
{
unsigned char present = 0;
- struct address_space * as = &vma->vm_file->f_dentry->d_inode->i_mapping;
+ struct address_space * as = vma->vm_file->f_dentry->d_inode->i_mapping;
struct page * page, ** hash = page_hash(as, pgoff);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-10-17 18:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-17 18:36 [PATCH] 2.4.13pre3: &i_mapping used where i_mapping needed Chip Salzenberg
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.