On Thu, 25 Sep 2003 10:50:41 +0200,
qba <qba@xxxxxxxxxxxxxxx> wrote:
>Helou.
>Linux 2.4.22 kernel compiled by me - on woody debian with
>xfs # The XFS development tree , owl , imq and esfq patches .
>
>During shutdown i get message that : /dev/hda2 (my / ) is not mounted ,
>and the system is unable to umount it because it is busy.
Not an XFS problem. You still have a process running that is holding /
open. Edit /etc/rc.d/init.d/halt, after
# Try them all, one last time.
umount -a -f
add
ps xa
lsof /
That will tell you which process is holding / open.
>Everytime at the startup i get
>Sep 24 15:32:40 gepard kernel: XFS mounting filesystem ide0(3,2)
>Sep 24 15:32:40 gepard kernel: Starting XFS recovery on filesystem: ide0(=
>3,2) (dev: 3/2)
>Sep 24 15:32:40 gepard kernel: Ending XFS recovery on filesystem: ide0(3,=
>2) (dev: 3/2)
A normal side effect of being unable to umount /. Fix the umount
problem and this will go away.
>More over , i added a new hard disk, WDC80GB, made xfs on it mounted.
>when making hdparm -c1 -d1 /dev/hdb (hdb it is this disk)
>i get=20
>Sep 24 15:32:40 gepard kernel: blk: queue c049fde0, I/O limit 4095Mb
>(mask 0xffffffff)
>Sep 24 15:32:40 gepard kernel: blk: queue c049ff28, I/O limit 4095Mb
>(mask 0xffffffff)
Normal kernel debugging messages from drivers/block/ll_rw_blk.c,
nothing to do with XFS.
|