Searched refs:ictx (Results 1 - 7 of 7) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dindex.h89 extern void ntfs_index_ctx_put(ntfs_index_context *ictx);
92 ntfs_index_context *ictx);
98 * @ictx: ntfs index context describing the index entry
111 static inline void ntfs_index_entry_flush_dcache_page(ntfs_index_context *ictx) argument
113 if (ictx->is_in_root)
114 flush_dcache_mft_record_page(ictx->actx->ntfs_ino);
116 flush_dcache_page(ictx->page);
121 * @ictx: ntfs index context describing the index entry
123 * Mark the index entry described by the index entry context @ictx dirty.
137 static inline void ntfs_index_entry_mark_dirty(ntfs_index_context *ictx) argument
[all...]
H A Dquota.c39 ntfs_index_context *ictx; local
52 ictx = ntfs_index_ctx_get(NTFS_I(vol->quota_q_ino));
53 if (!ictx) {
57 err = ntfs_index_lookup(&qid, sizeof(qid), ictx);
67 if (ictx->data_len < offsetof(QUOTA_CONTROL_ENTRY, sid)) {
72 qce = (QUOTA_CONTROL_ENTRY*)ictx->data;
97 ntfs_index_entry_flush_dcache_page(ictx);
98 ntfs_index_entry_mark_dirty(ictx);
100 ntfs_index_ctx_put(ictx);
111 if (ictx)
[all...]
H A Dindex.c39 ntfs_index_context *ictx; local
41 ictx = kmem_cache_alloc(ntfs_index_ctx_cache, GFP_NOFS);
42 if (ictx)
43 *ictx = (ntfs_index_context){ .idx_ni = idx_ni };
44 return ictx;
49 * @ictx: index context to free
51 * Release the index context @ictx, releasing all associated resources.
55 void ntfs_index_ctx_put(ntfs_index_context *ictx) argument
57 if (ictx->entry) {
58 if (ictx
117 ntfs_index_lookup(const void *key, const int key_len, ntfs_index_context *ictx) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dindex.h107 extern void ntfs_index_ctx_put(ntfs_index_context *ictx);
108 extern void ntfs_index_ctx_reinit(ntfs_index_context *ictx);
111 ntfs_index_context *ictx);
121 extern void ntfs_index_entry_mark_dirty(ntfs_index_context *ictx);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dcryptd.c52 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst); local
53 return ictx->state;
154 struct cryptd_instance_ctx *ictx = crypto_instance_ctx(inst); local
155 struct crypto_spawn *spawn = &ictx->spawn;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dinode.c553 ntfs_index_context *ictx; local
588 ictx = ntfs_index_ctx_get(index_ni, NTFS_INDEX_I30, 4);
589 if (!ictx) {
598 if (ntfs_index_lookup(fn, sizeof(FILE_NAME_ATTR), ictx)) {
607 ntfs_index_ctx_put(ictx);
613 fn = (FILE_NAME_ATTR *)ictx->data;
623 ntfs_index_entry_mark_dirty(ictx);
624 ntfs_index_ctx_put(ictx);
H A Dindex.c51 * @ictx: ntfs index context describing the index entry
53 * Mark the index entry described by the index entry context @ictx dirty.
63 void ntfs_index_entry_mark_dirty(ntfs_index_context *ictx) argument
65 if (ictx->is_in_root)
66 ntfs_inode_mark_dirty(ictx->actx->ntfs_ino);
68 ictx->ib_dirty = TRUE;

Completed in 98 milliseconds