mirror of
https://github.com/kdave/btrfs-progs
synced 2025-05-05 01:17:56 +00:00
Signed-off-by: Lakshmipathi.G <Lakshmipathi.G@giis.co.in> Signed-off-by: David Sterba <dsterba@suse.com>
18 lines
350 B
Bash
Executable File
18 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Check whether btrfs check quota verify will cause stack overflow.
|
|
# This is caused by lack of handling of tree reloc tree.
|
|
# Fixed by patch:
|
|
# btrfs-progs: Fix stack overflow for checking qgroup on tree reloc tree
|
|
|
|
source "$TOP/tests/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image()
|
|
{
|
|
run_check "$TOP/btrfs" check "$1"
|
|
}
|
|
|
|
check_all_images
|