summaryrefslogtreecommitdiffstats
path: root/doc/README.ARM-memory-map
Commit message (Expand)AuthorAgeFilesLines
* doc: delete long-obsolete README.ARM-memory-mapRobert P. J. Day2019-04-261-17/+0
* Rename TEXT_BASE into CONFIG_SYS_TEXT_BASEWolfgang Denk2010-10-181-2/+2
* Patch by Anders Larsen, 09 Jan 2004:wdenk2004-02-081-10/+0
* * Patch by Gleb Natapov, 19 Sep 2003:wdenk2003-12-061-0/+27
> 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
#!/bin/bash

. $(dirname $0)/../include.rc

cleanup;

BRICK_COUNT=3

TEST glusterd
TEST pidof glusterd

TEST $CLI volume create $V0 $H0:$B0/${V0}0 $H0:$B0/${V0}1 $H0:$B0/${V0}2
TEST $CLI volume start $V0

## Mount FUSE with caching disabled
TEST glusterfs --entry-timeout=0 --attribute-timeout=0 -s $H0 --volfile-id $V0 $M0;

function query_pathinfo()
{
    local path=$1;
    local retval;

    local pathinfo=`getfattr -m . -n trusted.glusterfs.pathinfo $path`;
    retval=`echo $pathinfo | grep -o 'POSIX' | wc -l`;
    echo $retval
}

touch $M0/f00f;
mkdir $M0/f00d;

# verify pathinfo for a file and directory
EXPECT 1 query_pathinfo $M0/f00f;
EXPECT $BRICK_COUNT query_pathinfo $M0/f00d;

# Kill a brick process and then query for pathinfo
# for directories pathinfo should list backend patch from available (up) subvolumes

kill -9 `cat /var/lib/glusterd/vols/$V0/run/$H0-d-backends-${V0}1.pid`;

EXPECT `expr $BRICK_COUNT - 1` query_pathinfo $M0/f00d;

cleanup;