From 4358b191562038cd9fd2b1444dad87cf492053a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Wed, 7 Apr 2010 17:42:03 +0000 Subject: [PATCH] Of course, filling in the vnode ops for xattrs will help :D git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36062 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../kernel/file_systems/googlefs/googlefs.c | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/add-ons/kernel/file_systems/googlefs/googlefs.c b/src/add-ons/kernel/file_systems/googlefs/googlefs.c index b9847c6587..430798e2cb 100644 --- a/src/add-ons/kernel/file_systems/googlefs/googlefs.c +++ b/src/add-ons/kernel/file_systems/googlefs/googlefs.c @@ -1757,21 +1757,21 @@ static fs_vnode_ops sGoogleFSVnodeOps = { &googlefs_rewinddir, /* attribute directory operations */ - NULL, // &googlefs_open_attrdir, - NULL, // &googlefs_close_attrdir, - NULL, // &googlefs_free_attrdircookie, - NULL, // &googlefs_read_attrdir, - NULL, // &googlefs_rewind_attrdir, + &googlefs_open_attrdir, + &googlefs_close_attrdir, + &googlefs_free_attrdircookie, + &googlefs_read_attrdir, + &googlefs_rewind_attrdir, /* attribute operations */ NULL, // &googlefs_create_attr - NULL, // &googlefs_open_attr_h, - NULL, // &googlefs_close_attr_h, - NULL, // &googlefs_free_attr_cookie_h, - NULL, // &googlefs_read_attr_h, + &googlefs_open_attr_h, + &googlefs_close_attr_h, + &googlefs_free_attr_cookie_h, + &googlefs_read_attr, NULL, // &googlefs_write_attr_h, - NULL, // &googlefs_read_attr_stat_h, + &googlefs_read_attr_stat, NULL, // &googlefs_write_attr_stat NULL, // &googlefs_rename_attr NULL, // &googlefs_remove_attr