diff options
author | Volker Lendecke <vl@sernet.de> | 2007-10-22 18:14:57 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-15 11:01:18 +0100 |
commit | 57cc992e0f9a5d729ecf3c8effc862542ef7a84e (patch) | |
tree | d1edd79c94965ffbf4d6a0cb4d70fd1da0db16b7 /source3/script | |
parent | e00e080034124805092e7f888e3a1cf61cf85a5b (diff) | |
download | samba-57cc992e0f9a5d729ecf3c8effc862542ef7a84e.tar.gz samba-57cc992e0f9a5d729ecf3c8effc862542ef7a84e.tar.bz2 samba-57cc992e0f9a5d729ecf3c8effc862542ef7a84e.zip |
Implement vfs_ea_tdb
This is an option for file systems that do not implement xattrs: in
lockdir/eas.tdb an array of xatts per inode is stored.
It can not solve the problem that xattrs might reappear if a posix-level
process deletes a file and happens to re-create it under the same name. On file
systems with birthtime we might have a chance to detect this, but not with
standard posix. A future version might put relief on file systems that do have
xattrs but where these are severely limited in size/speed/whatever: We can put
a simple marker as a native xattr, but the xattrs proper are stored in the tdb.
Volker
(This used to be commit 2036b4c5ad677b8a477b34b0f076febab0abff5e)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/selftest.sh | 1 | ||||
-rwxr-xr-x | source3/script/tests/test_posix_s3.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/script/tests/selftest.sh b/source3/script/tests/selftest.sh index 86abb15ed1..08bfdf601c 100755 --- a/source3/script/tests/selftest.sh +++ b/source3/script/tests/selftest.sh @@ -186,6 +186,7 @@ cat >$SERVERCONFFILE<<EOF map hidden = yes map system = yes create mask = 755 + vfs objects = $BINDIR/ea_tdb.so [hideunread] copy = tmp hide unreadable = yes diff --git a/source3/script/tests/test_posix_s3.sh b/source3/script/tests/test_posix_s3.sh index 9f672897ac..0b4a52d4b5 100755 --- a/source3/script/tests/test_posix_s3.sh +++ b/source3/script/tests/test_posix_s3.sh @@ -47,7 +47,7 @@ unix="UNIX-INFO2" tests="$base $raw $rpc $unix" skipped="BASE-CHARSET BASE-DELAYWRITE BASE-TCONDEV" -skipped="$skipped RAW-ACLS RAW-COMPOSITE RAW-CONTEXT RAW-EAS" +skipped="$skipped RAW-ACLS RAW-COMPOSITE RAW-CONTEXT" skipped="$skipped RAW-IOCTL" skipped="$skipped RAW-QFILEINFO RAW-QFSINFO RAW-SEARCH" skipped="$skipped RAW-SFILEINFO RAW-STREAMS" |