pagebuf is no longer a separate module.

This commit is contained in:
Nathan Scott
2002-01-14 02:14:31 +00:00
parent c6125f5285
commit a84f26cecb
2 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ To get it going automagically:
30 4 * * * $HOME/qa/auto-qa cron-restarted
Notes:
- if MODULAR=1 in auto-qa XFS and pagebuf are expected to
- if MODULAR=1 in auto-qa XFS and xfs_support are expected to
be modules. if MODULAR=0 they should be built into
the kernel
- the test device is cleaned at the start of the QA run
@@ -55,7 +55,7 @@ Notes:
leaves the device inconsistant etc)
- I'm using a hacked su because PCP sudo won't set the
gid properly, and normal linux su won't run
without a tty even if PAM is pissed-off.
without a tty even if PAM is switched off.
- The QA is restarted after reboot by a second cron entry
to avoid the test being able to get itself into
some stupid loop and so that it's always started
+2 -3
View File
@@ -451,8 +451,7 @@ do
_log " *** kernel"
ls -l /boot/*$EXTRA* 2>&1
_log " *** kernel modules"
ls -l /lib/modules/$SVERSION$EXTRA/kernel/fs/pagebuf/* \
/lib/modules/$SVERSION$EXTRA/kernel/fs/xfs/* \
ls -l /lib/modules/$SVERSION$EXTRA/kernel/fs/xfs/* \
/lib/modules/$SVERSION$EXTRA/kernel/fs/xfs_support/*
if [ $MODULAR -eq 0 ]
@@ -475,7 +474,7 @@ do
_log " *** removing modules"
for m in xfsidbg xfs pagebuf kdbm_pg kdbm_vm
for m in xfsidbg xfs kdbm_pg kdbm_vm
do
_sudo rmmod $m 2> /dev/null
done