summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2018-10-17 16:51:34 +0200
committerKarolin Seeger <kseeger@samba.org>2018-11-06 09:10:25 +0100
commit1078e220e5a80bc2c36eb915e5c323c286d8bc13 (patch)
treee1b0b82acdf7302615947e119bfcaa9940dad1b1 /source3
parent8c8d2d028dbc8957369cc4985e1b678f57c933c3 (diff)
downloadsamba-1078e220e5a80bc2c36eb915e5c323c286d8bc13.tar.gz
vfs_fruit: let fruit handle all aio on the FinderInfo metadata stream
This will be required to support using fake fds for the FinderInfo metadata stream. Bug: https://bugzilla.samba.org/show_bug.cgi?id=13646 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit 6fd256afcd5fedc894036efbfba1fc6d2264fba9)
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/vfs_fruit.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c
index 8e83183810e..ff981d0479b 100644
--- a/source3/modules/vfs_fruit.c
+++ b/source3/modules/vfs_fruit.c
@@ -4406,9 +4406,7 @@ static bool fruit_must_handle_aio_stream(struct fio *fio)
return false;
};
- if ((fio->type == ADOUBLE_META) &&
- (fio->config->meta == FRUIT_META_NETATALK))
- {
+ if (fio->type == ADOUBLE_META) {
return true;
}