diff options
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index cc337de18bb..dce75e736d8 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -3407,6 +3407,20 @@ __posix_fill_readdir (DIR *dir, off_t off, size_t size, gf_dirent_t *entries,                      && (!strcmp (entry->d_name, GF_REPLICATE_TRASH_DIR)))                          continue; +#ifdef __NetBSD__ +	       /* +		* NetBSD with UFS1 backend uses backing files for +		* extended attributes. They can be found in a +		* .attribute file located at the root of the filesystem +		* We hide it to glusterfs clients, since chaos will occur +		* when the cluster/dht xlator decides to distribute +		* exended attribute backing file accross storage servers. +		*/ +		if ((!strcmp(real_path, base_path)) +		    && (!strcmp(entry->d_name, ".attribute"))) +			continue; +#endif /* __NetBSD__ */ +                  if ((!strcmp (real_path, base_path))                      && (!strncmp (GF_HIDDEN_PATH, entry->d_name,                                    strlen (GF_HIDDEN_PATH)))) {  | 
