lkml.org 
[lkml]   [1997]   [Jun]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: modprobe ppa;modprobe -r ppa |-> Oops :(
On Sun, 8 Jun 1997, Andrea Arcangeli wrote:

> This script give me two Oops:
>
> #!/bin/sh
> while :; do
> modprobe ppa
> modprobe -r ppa
> done
>
> scsi_mod, parport and ppa are compiled as modules.

I don't get oopses, but then I don't have SCSI compiled as a module.

What kernel version are you using, and how long are you leaving the script
running? If it reliably causes the kernel to oops, could you try
something like:

#!/bin/sh
COUNT=1
while :; do
modprobe ppa
modprobe -r ppa
echo ${COUNT}
COUNT=$((${COUNT}+1))
done

Tim.
*/


\
 
 \ /
  Last update: 2005-03-22 13:39    [W:0.042 / U:0.076 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site