1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6#include <fs_cache.h>
7
8
9// TODO: We could propagate these calls to the kernel. They are only used for
10// optimization though and are not mission critical.
11
12
13status_t
14entry_cache_add(dev_t mountID, ino_t dirID, const char* name, ino_t nodeID)
15{
16	return B_OK;
17}
18
19
20status_t
21entry_cache_add_missing(dev_t mountID, ino_t dirID, const char* name)
22{
23	return B_OK;
24}
25
26
27status_t
28entry_cache_remove(dev_t mountID, ino_t dirID, const char* name)
29{
30	return B_OK;
31}
32