* [PATCH] two small patches for fs/exec.c and fs/ramfs/inode.c
@ 2001-07-29 16:00 Art Haas
0 siblings, 0 replies; only message in thread
From: Art Haas @ 2001-07-29 16:00 UTC (permalink / raw)
To: linux-kernel
Hi.
Here are two trivial patches that remove warnings. The fs/exec.c patch
removes an unused variable, and the fs/ramfs/inode.c patch replaces
a call of `linux/malloc.h' with `linux/slab.h'. Both patches I've
applied to my 2.4.7-ac2 kernel. Sorry if this is the 50th time you've
seen these posted to the mailing list ...
My thanks to everyone working on the kernel. The 2.4 kernels keep
getting better every day!
Art Haas
====================================================
--- fs/exec.c.orig Sat Jul 28 11:52:47 2001
+++ fs/exec.c Sat Jul 28 12:25:28 2001
@@ -929,7 +929,6 @@
int do_coredump(long signr, struct pt_regs * regs)
{
- struct mm_struct *mm;
struct linux_binfmt * binfmt;
char corename[6+sizeof(current->comm)+10];
struct file * file;
====================================================
--- fs/ramfs/inode.c.orig Sat Jul 28 11:52:50 2001
+++ fs/ramfs/inode.c Sat Jul 28 13:00:26 2001
@@ -30,7 +30,7 @@
#include <linux/string.h>
#include <linux/locks.h>
#include <linux/highmem.h>
-#include <linux/malloc.h>
+#include <linux/slab.h>
#include <asm/uaccess.h>
#include <linux/spinlock.h>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-07-29 15:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-29 16:00 [PATCH] two small patches for fs/exec.c and fs/ramfs/inode.c Art Haas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox