#!/bin/sh if [ $(id -u) != 0 ]; then echo $msg must be run as root >&2 exit 0 fi echo "--------------------" echo "running psock_fanout test" echo "--------------------" ./psock_fanout if [ $? -ne 0 ]; then echo "[FAIL]" else echo "[PASS]" fi echo "--------------------" echo "running psock_tpacket test" echo "--------------------" ./psock_tpacket if [ $? -ne 0 ]; then echo "[FAIL]" else echo "[PASS]" fi t-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/capabilities
.cgi/linux/net-next.git/commit/?id=585d70006f6e30f42e96d56c6c0933671c516c7b'>585d70006f6e30f42e96d56c6c0933671c516c7b (patch)
AgeCommit message (Collapse)AuthorFilesLines
tree07531d00ad87220b8f049b1b4abf75ece7a22929
parent2600a46ee0ed57c0e0a382c2a37ebac64d374d20 (diff)
udf: Don't BUG on missing metadata partition descriptor
Currently, if a metadata partition map is missing its partition descriptor, then udf_get_pblock_meta25() will BUG() out the first time it is called. This is rather drastic for a corrupted filesystem, so just treat this case as an invalid mapping instead. Signed-off-by: Alden Tondettar <alden.tondettar@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>