/kernel/linux/linux-6.6/fs/ntfs3/ |
H A D | index.c | 656 void fnd_clear(struct ntfs_fnd *fnd) in fnd_clear() argument 660 for (i = fnd->level - 1; i >= 0; i--) { in fnd_clear() 661 struct indx_node *n = fnd->nodes[i]; in fnd_clear() 667 fnd->nodes[i] = NULL; in fnd_clear() 669 fnd->level = 0; in fnd_clear() 670 fnd->root_de = NULL; in fnd_clear() 673 static int fnd_push(struct ntfs_fnd *fnd, struct indx_node *n, in fnd_push() argument 676 int i = fnd->level; in fnd_push() 678 if (i < 0 || i >= ARRAY_SIZE(fnd->nodes)) in fnd_push() 680 fnd in fnd_push() 686 fnd_pop(struct ntfs_fnd *fnd) fnd_pop() argument 699 fnd_is_empty(struct ntfs_fnd *fnd) fnd_is_empty() argument 1139 indx_find(struct ntfs_index *indx, struct ntfs_inode *ni, const struct INDEX_ROOT *root, const void *key, size_t key_len, const void *ctx, int *diff, struct NTFS_DE **entry, struct ntfs_fnd *fnd) indx_find() argument 1202 indx_find_sort(struct ntfs_index *indx, struct ntfs_inode *ni, const struct INDEX_ROOT *root, struct NTFS_DE **entry, struct ntfs_fnd *fnd) indx_find_sort() argument 1312 indx_find_raw(struct ntfs_index *indx, struct ntfs_inode *ni, const struct INDEX_ROOT *root, struct NTFS_DE **entry, size_t *off, struct ntfs_fnd *fnd) indx_find_raw() argument 1568 indx_insert_into_root(struct ntfs_index *indx, struct ntfs_inode *ni, const struct NTFS_DE *new_de, struct NTFS_DE *root_de, const void *ctx, struct ntfs_fnd *fnd, bool undo) indx_insert_into_root() argument 1781 indx_insert_into_buffer(struct ntfs_index *indx, struct ntfs_inode *ni, struct INDEX_ROOT *root, const struct NTFS_DE *new_de, const void *ctx, int level, struct ntfs_fnd *fnd) indx_insert_into_buffer() argument 1928 indx_insert_entry(struct ntfs_index *indx, struct ntfs_inode *ni, const struct NTFS_DE *new_de, const void *ctx, struct ntfs_fnd *fnd, bool undo) indx_insert_entry() argument 2155 indx_get_entry_to_replace(struct ntfs_index *indx, struct ntfs_inode *ni, const struct NTFS_DE *de_next, struct NTFS_DE **de_to_replace, struct ntfs_fnd *fnd) indx_get_entry_to_replace() argument 2256 struct ntfs_fnd *fnd, *fnd2; indx_delete_entry() local 2643 struct ntfs_fnd *fnd; indx_update_dup() local [all...] |
H A D | namei.c | 371 struct ntfs_fnd *fnd = NULL; in ntfs_atomic_open() local 406 fnd = fnd_get(); in ntfs_atomic_open() 407 if (!fnd) { in ntfs_atomic_open() 412 d = d_splice_alias(dir_search_u(dir, uni, fnd), dentry); in ntfs_atomic_open() 431 * fnd contains tree's path to insert to. in ntfs_atomic_open() 432 * If fnd is not NULL then dir is locked. in ntfs_atomic_open() 435 mode, 0, NULL, 0, fnd); in ntfs_atomic_open() 441 fnd_put(fnd); in ntfs_atomic_open()
|
H A D | ntfs_fs.h | 493 struct ntfs_fnd *fnd); 661 void fnd_clear(struct ntfs_fnd *fnd); 666 static inline void fnd_put(struct ntfs_fnd *fnd) in fnd_put() argument 668 if (fnd) { in fnd_put() 669 fnd_clear(fnd); in fnd_put() 670 kfree(fnd); in fnd_put() 683 struct ntfs_fnd *fnd); 686 struct ntfs_fnd *fnd); 689 size_t *off, struct ntfs_fnd *fnd); 692 struct ntfs_fnd *fnd, boo [all...] |
H A D | bitmap.c | 992 size_t fnd, max_alloc, b_len, b_pos; in wnd_find() local 1070 fnd = hint; in wnd_find() 1079 fnd = hint; in wnd_find() 1126 fnd = e->start.key; in wnd_find() 1223 fnd = wnd_scan(bh->b_data, wbit, wpos, in wnd_find() 1227 if (fnd != MINUS_ONE_T) { in wnd_find() 1237 fnd = wnd_scan(bh->b_data, wbit, in wnd_find() 1241 if (fnd != MINUS_ONE_T) { in wnd_find() 1257 fnd = wbit + wpos - prev_tail; in wnd_find() 1277 fnd in wnd_find() [all...] |
H A D | dir.c | 234 struct ntfs_fnd *fnd) in dir_search_u() 245 if (!fnd) { in dir_search_u() 251 fnd = fnd_a; in dir_search_u() 254 err = indx_find(&ni->dir, ni, NULL, uni, 0, sbi, &diff, &e, fnd); in dir_search_u() 233 dir_search_u(struct inode *dir, const struct cpu_str *uni, struct ntfs_fnd *fnd) dir_search_u() argument
|
H A D | fsntfs.c | 2411 struct ntfs_fnd *fnd = NULL; in ntfs_remove_reparse() local 2429 fnd = fnd_get(); in ntfs_remove_reparse() 2430 if (!fnd) { in ntfs_remove_reparse() 2443 (struct NTFS_DE **)&re, fnd); in ntfs_remove_reparse() 2454 fnd_put(fnd); in ntfs_remove_reparse() 2455 fnd = NULL; in ntfs_remove_reparse() 2462 fnd_put(fnd); in ntfs_remove_reparse()
|
H A D | inode.c | 1209 * NOTE: if fnd != NULL (ntfs_atomic_open) then @dir is locked 1215 struct ntfs_fnd *fnd) in ntfs_create_inode() 1240 if (!fnd) in ntfs_create_inode() 1669 err = indx_insert_entry(&dir_ni->dir, dir_ni, new_de, sbi, fnd, 0); in ntfs_create_inode() 1711 if (!fnd) in ntfs_create_inode() 1211 ntfs_create_inode(struct mnt_idmap *idmap, struct inode *dir, struct dentry *dentry, const struct cpu_str *uni, umode_t mode, dev_t dev, const char *symname, u32 size, struct ntfs_fnd *fnd) ntfs_create_inode() argument
|
/kernel/linux/linux-5.10/kernel/debug/kdb/ |
H A D | kdb_io.c | 595 int fnd, len; in vkdb_printf() local 699 fnd = kdb_search_string(kdb_buffer, kdb_grep_string); in vkdb_printf() 700 if (!fnd) { in vkdb_printf()
|
/kernel/linux/linux-6.6/kernel/debug/kdb/ |
H A D | kdb_io.c | 619 int fnd, len; in vkdb_printf() local 723 fnd = kdb_search_string(kdb_buffer, kdb_grep_string); in vkdb_printf() 724 if (!fnd) { in vkdb_printf()
|
/kernel/linux/linux-5.10/fs/hpfs/ |
H A D | dnode.c | 58 for (i = hpfs_inode->i_rddir_off; *i; i++) if (*i == pos) goto fnd; in hpfs_del_pos() 60 fnd: in hpfs_del_pos() 577 if (de->down) if (de_down_pointer(de) == dno) goto fnd; in delete_empty_dnode() 580 fnd: in delete_empty_dnode()
|
/kernel/linux/linux-6.6/fs/hpfs/ |
H A D | dnode.c | 58 for (i = hpfs_inode->i_rddir_off; *i; i++) if (*i == pos) goto fnd; in hpfs_del_pos() 60 fnd: in hpfs_del_pos() 577 if (de->down) if (de_down_pointer(de) == dno) goto fnd; in delete_empty_dnode() 580 fnd: in delete_empty_dnode()
|
/kernel/linux/linux-5.10/arch/sparc/kernel/ |
H A D | mdesc.c | 953 int fnd = 0; in set_max_cache_ids_by_cache() local 967 fnd = 1; in set_max_cache_ids_by_cache() 969 return fnd; in set_max_cache_ids_by_cache()
|
/kernel/linux/linux-6.6/arch/sparc/kernel/ |
H A D | mdesc.c | 953 int fnd = 0; in set_max_cache_ids_by_cache() local 967 fnd = 1; in set_max_cache_ids_by_cache() 969 return fnd; in set_max_cache_ids_by_cache()
|