patch-2.4.3 linux/fs/buffer.c
Next file: linux/fs/coda/inode.c
Previous file: linux/fs/binfmt_elf.c
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Sat Mar 24 19:31:58 2001
- Orig file:
v2.4.2/linux/fs/buffer.c
- Orig date:
Wed Feb 21 18:20:38 2001
diff -u --recursive --new-file v2.4.2/linux/fs/buffer.c linux/fs/buffer.c
@@ -1880,8 +1880,8 @@
iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
page = grab_cache_page(mapping, index);
- err = PTR_ERR(page);
- if (IS_ERR(page))
+ err = -ENOMEM;
+ if (!page)
goto out;
if (!page->buffers)
@@ -2750,7 +2750,7 @@
tsk->session = 1;
tsk->pgrp = 1;
- strcpy(tsk->comm, "kupdate");
+ strcpy(tsk->comm, "kupdated");
/* sigstop and sigcont will stop and wakeup kupdate */
spin_lock_irq(&tsk->sigmask_lock);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)