fixed a typo and make sure we have a file cache
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18691 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1056,9 +1056,9 @@ dosfs_sync(void *_vol)
|
|||||||
static status_t
|
static status_t
|
||||||
dosfs_fsync(void *_vol, void *_node)
|
dosfs_fsync(void *_vol, void *_node)
|
||||||
{
|
{
|
||||||
nspace *vol = (nspace *)vol;
|
nspace *vol = (nspace *)_vol;
|
||||||
vnode *node = (vnode *)_node;
|
vnode *node = (vnode *)_node;
|
||||||
status_t err;
|
status_t err = B_OK;
|
||||||
|
|
||||||
LOCK_VOL(vol);
|
LOCK_VOL(vol);
|
||||||
|
|
||||||
@@ -1067,7 +1067,8 @@ dosfs_fsync(void *_vol, void *_node)
|
|||||||
return EINVAL;
|
return EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = file_cache_sync(node->cache);
|
if (node->cache)
|
||||||
|
err = file_cache_sync(node->cache);
|
||||||
|
|
||||||
UNLOCK_VOL(vol);
|
UNLOCK_VOL(vol);
|
||||||
return err;
|
return err;
|
||||||
|
|||||||
Reference in New Issue
Block a user