forgot to add B_FS_HAS_ATTR when adding attribute support

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40337 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2011-01-31 19:55:58 +00:00
parent 8f25381cba
commit 886d6531a6
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ btrfs_read_fs_info(fs_volume* _volume, struct fs_info* info)
Volume* volume = (Volume*)_volume->private_volume;
// File system flags
info->flags = B_FS_IS_PERSISTENT
info->flags = B_FS_IS_PERSISTENT | B_FS_HAS_ATTR
| (volume->IsReadOnly() ? B_FS_IS_READONLY : 0);
info->io_size = BTRFS_IO_SIZE;
info->block_size = volume->BlockSize();

View File

@ -160,7 +160,7 @@ ext2_read_fs_info(fs_volume* _volume, struct fs_info* info)
Volume* volume = (Volume*)_volume->private_volume;
// File system flags
info->flags = B_FS_IS_PERSISTENT
info->flags = B_FS_IS_PERSISTENT | B_FS_HAS_ATTR
| (volume->IsReadOnly() ? B_FS_IS_READONLY : 0);
info->io_size = EXT2_IO_SIZE;
info->block_size = volume->BlockSize();