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