23 lines
272 B
Bash
23 lines
272 B
Bash
|
#!/bin/bash
|
||
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
source _debugfs_common.sh
|
||
|
|
||
|
# Test huge count read write
|
||
|
# ==========================
|
||
|
|
||
|
dmesg -C
|
||
|
|
||
|
for file in "$DBGFS/"*
|
||
|
do
|
||
|
./huge_count_read_write "$file"
|
||
|
done
|
||
|
|
||
|
if dmesg | grep -q WARNING
|
||
|
then
|
||
|
dmesg
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|