Changes in uspace/srv/fs/tmpfs/tmpfs_ops.c [1313ee9:0da4e41] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs_ops.c
r1313ee9 r0da4e41 69 69 static int tmpfs_match(fs_node_t **, fs_node_t *, const char *); 70 70 static int tmpfs_node_get(fs_node_t **, dev_handle_t, fs_index_t); 71 static int tmpfs_node_open(fs_node_t *);72 71 static int tmpfs_node_put(fs_node_t *); 73 72 static int tmpfs_create_node(fs_node_t **, dev_handle_t, int); … … 118 117 } 119 118 120 static dev_handle_t tmpfs_device_get(fs_node_t *fn)121 {122 return 0;123 }124 125 119 /** libfs operations */ 126 120 libfs_ops_t tmpfs_libfs_ops = { … … 128 122 .match = tmpfs_match, 129 123 .node_get = tmpfs_node_get, 130 .node_open = tmpfs_node_open,131 124 .node_put = tmpfs_node_put, 132 125 .create = tmpfs_create_node, … … 140 133 .plb_get_char = tmpfs_plb_get_char, 141 134 .is_directory = tmpfs_is_directory, 142 .is_file = tmpfs_is_file, 143 .device_get = tmpfs_device_get 135 .is_file = tmpfs_is_file 144 136 }; 145 137 … … 249 241 } 250 242 return EOK; 251 }252 253 int tmpfs_node_open(fs_node_t *fn)254 {255 /* nothing to do */256 return EOK;257 243 } 258 244
Note:
See TracChangeset
for help on using the changeset viewer.