* [PATCH] __idetape_kmalloc_stage return code check in ide-tape.c (244-ac16)
@ 2001-05-25 20:24 Rasmus Andersen
0 siblings, 0 replies; only message in thread
From: Rasmus Andersen @ 2001-05-25 20:24 UTC (permalink / raw)
To: gadio; +Cc: linux-kernel
Hi.
This trivial patch adds a kmalloc check to ide-tape.c::
idetape_onstream_read_back_buffer as per the Stanford team's report
way back. It applies against 244ac16.
Reading the code I was not sure if it was OK to just return
or more should be done. Please sanity check this.
--- linux-244-ac11-clean/drivers/ide/ide-tape.c Sat May 19 21:06:35 2001
+++ linux-244-ac11/drivers/ide/ide-tape.c Sun May 20 14:58:44 2001
@@ -3472,6 +3472,11 @@
printk(KERN_INFO "ide-tape: %s: reading back %d frames from the drive's internal buffer\n", tape->name, frames);
for (i = 0; i < frames; i++) {
stage = __idetape_kmalloc_stage(tape, 0, 0);
+ if(!stage) {
+ printk(KERN_WARNING "(idetape:) Failed to allocate memory for buffer\n");
+ return;
+ }
+
if (!first)
first = stage;
aux = stage->aux;
--
Regards,
Rasmus(rasmus@jaquet.dk)
'Xenix is the pinnacle of modern UNIX design, and will be used for many
years to come' -Xenix OS API manual
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-05-25 20:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-05-25 20:24 [PATCH] __idetape_kmalloc_stage return code check in ide-tape.c (244-ac16) Rasmus Andersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®