Changeset bd64680 in mainline
- Timestamp:
- 2011-03-31T19:29:45Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2cada66
- Parents:
- 147c9f6
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.h
r147c9f6 rbd64680 43 43 44 44 #define DEBUG_MODE 45 46 #define min(a, b) ((a) < (b) ? (a) : (b)) 45 47 46 48 #ifdef DEBUG_MODE … … 89 91 int ino_per_block; 90 92 int dirsize; 93 unsigned max_name_len; 91 94 bool long_names; 92 95 bool native; -
uspace/srv/fs/minixfs/mfs_ops.c
r147c9f6 rbd64680 55 55 static devmap_handle_t mfs_device_get(fs_node_t *fsnode); 56 56 static aoff64_t mfs_size_get(fs_node_t *node); 57 static int mfs_match(fs_node_t **rfn, fs_node_t *pfn, const char *component); 57 58 58 59 static … … 74 75 .node_open = mfs_node_open, 75 76 .index_get = mfs_index_get, 77 .match = mfs_match, 76 78 .plb_get_char = mfs_plb_get_char, 77 79 .has_children = mfs_has_children, … … 190 192 sbi->block_size = conv16(native, sb3->s_block_size); 191 193 sbi->dirsize = MFS3_DIRSIZE; 194 sbi->max_name_len = MFS3_MAX_NAME_LEN; 192 195 } else { 193 196 sbi->ninodes = conv16(native, sb->s_ninodes); … … 202 205 sbi->nzones = conv32(native, sb->s_nzones2); 203 206 sbi->dirsize = longnames ? MFSL_DIRSIZE : MFS_DIRSIZE; 207 sbi->max_name_len = longnames ? MFS_L_MAX_NAME_LEN : 208 MFS_MAX_NAME_LEN; 204 209 } 205 210 … … 238 243 struct mfs_node *node = fsnode->data; 239 244 return node->instance->handle; 245 } 246 247 static int mfs_match(fs_node_t **rfn, fs_node_t *pfn, const char *component) 248 { 249 struct mfs_node *mnode = pfn->data; 250 struct mfs_ino_info *ino_i = mnode->ino_i; 251 struct mfs_dentry_info *d_info; 252 253 if (!S_ISDIR(ino_i->i_mode)) 254 return ENOTDIR; 255 256 mfsdebug("mfs_match()\n"); 257 258 struct mfs_sb_info *sbi = mnode->instance->sbi; 259 const size_t comp_size = str_size(component); 260 261 int i = 2; 262 while (1) { 263 d_info = read_directory_entry(mnode, i++); 264 if (!d_info) { 265 /*Reached the end of the directory entry list*/ 266 break; 267 } 268 269 if (!d_info->d_inum) { 270 /*This entry is not used*/ 271 continue; 272 } 273 274 if (!bcmp(component, d_info->d_name, min(sbi->max_name_len, 275 comp_size))) { 276 /*Hit!*/ 277 mfs_node_core_get(rfn, mnode->instance, 278 d_info->d_inum); 279 goto found; 280 } 281 } 282 *rfn = NULL; 283 return ENOENT; 284 found: 285 return EOK; 240 286 } 241 287 … … 475 521 476 522 for (link = inst_list.next; link != &inst_list; link = link->next) { 477 instance_ptr = list_get_instance(link, struct mfs_instance, link); 523 instance_ptr = list_get_instance(link, struct mfs_instance, 524 link); 478 525 479 526 if (instance_ptr->handle == handle) {
Note:
See TracChangeset
for help on using the changeset viewer.