Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 98) sorted by relevance

1234

/fs/jffs2/
Dnodelist.c24 struct jffs2_node_frag *this);
102 struct jffs2_node_frag *this) in jffs2_obsolete_node_frag() argument
104 if (this->node) { in jffs2_obsolete_node_frag()
105 this->node->frags--; in jffs2_obsolete_node_frag()
106 if (!this->node->frags) { in jffs2_obsolete_node_frag()
109 ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size); in jffs2_obsolete_node_frag()
110 jffs2_mark_node_obsolete(c, this->node->raw); in jffs2_obsolete_node_frag()
111 jffs2_free_full_dnode(this->node); in jffs2_obsolete_node_frag()
114 …ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size, this->node->frags); in jffs2_obsolete_node_frag()
115 mark_ref_normal(this->node->raw); in jffs2_obsolete_node_frag()
[all …]
Dcompr.c34 static int jffs2_is_best_compression(struct jffs2_compressor *this, in jffs2_is_best_compression() argument
43 if ((this->compr == JFFS2_COMPR_LZO) && (bestsize > size)) in jffs2_is_best_compression()
47 if ((this->compr == JFFS2_COMPR_LZO) && (bestsize > (size * FAVOUR_LZO_PERCENT / 100))) in jffs2_is_best_compression()
77 struct jffs2_compressor *this; in jffs2_selected_compress() local
90 list_for_each_entry(this, &jffs2_compressor_list, list) { in jffs2_selected_compress()
92 if (!this->compress || this->disabled) in jffs2_selected_compress()
96 if (compr && (compr != this->compr)) in jffs2_selected_compress()
103 this->usecount++; in jffs2_selected_compress()
108 err = this->compress(data_in, output_buf, datalen, cdatalen); in jffs2_selected_compress()
111 this->usecount--; in jffs2_selected_compress()
[all …]
Dreadinode.c223 struct jffs2_tmp_dnode_info *this, *ptn; in jffs2_add_tn_to_tree() local
250 this = jffs2_lookup_tn(&rii->tn_root, tn->fn->ofs); in jffs2_add_tn_to_tree()
251 if (this) { in jffs2_add_tn_to_tree()
254 while (this->overlapped) { in jffs2_add_tn_to_tree()
255 ptn = tn_prev(this); in jffs2_add_tn_to_tree()
261 this->overlapped = 0; in jffs2_add_tn_to_tree()
264 this = ptn; in jffs2_add_tn_to_tree()
266 …dbg_readinode("'this' found %#04x-%#04x (%s)\n", this->fn->ofs, this->fn->ofs + this->fn->size, th… in jffs2_add_tn_to_tree()
269 while (this) { in jffs2_add_tn_to_tree()
270 if (this->fn->ofs > fn_end) in jffs2_add_tn_to_tree()
[all …]
Ddebug.c501 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
505 list_for_each(this, &c->clean_list) { in __jffs2_dbg_dump_block_lists_nolock()
506 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
523 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
527 list_for_each(this, &c->very_dirty_list) { in __jffs2_dbg_dump_block_lists_nolock()
528 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
546 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
550 list_for_each(this, &c->dirty_list) { in __jffs2_dbg_dump_block_lists_nolock()
551 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in __jffs2_dbg_dump_block_lists_nolock()
569 struct list_head *this; in __jffs2_dbg_dump_block_lists_nolock() local
[all …]
Derase.c229 struct jffs2_raw_node_ref *this; in jffs2_remove_node_refs_from_ino_list() local
231 this = *prev; in jffs2_remove_node_refs_from_ino_list()
232 *prev = this->next_in_ino; in jffs2_remove_node_refs_from_ino_list()
233 this->next_in_ino = NULL; in jffs2_remove_node_refs_from_ino_list()
235 if (this == ref) in jffs2_remove_node_refs_from_ino_list()
256 struct jffs2_raw_node_ref *this; in jffs2_remove_node_refs_from_ino_list()
259 this = ic->nodes; in jffs2_remove_node_refs_from_ino_list()
262 while(this) { in jffs2_remove_node_refs_from_ino_list()
264 ref_offset(this), ref_flags(this)); in jffs2_remove_node_refs_from_ino_list()
269 this = this->next_in_ino; in jffs2_remove_node_refs_from_ino_list()
Dwbuf.c50 struct jffs2_inodirty *this = c->wbuf_inodes; in jffs2_wbuf_pending_for_ino() local
53 if (this == &inodirty_nomem) in jffs2_wbuf_pending_for_ino()
57 if (this && !ino) in jffs2_wbuf_pending_for_ino()
61 while (this) { in jffs2_wbuf_pending_for_ino()
62 if (this->ino == ino) in jffs2_wbuf_pending_for_ino()
64 this = this->next; in jffs2_wbuf_pending_for_ino()
71 struct jffs2_inodirty *this; in jffs2_clear_wbuf_ino_list() local
73 this = c->wbuf_inodes; in jffs2_clear_wbuf_ino_list()
75 if (this != &inodirty_nomem) { in jffs2_clear_wbuf_ino_list()
76 while (this) { in jffs2_clear_wbuf_ino_list()
[all …]
/fs/overlayfs/
Dexport.c373 struct dentry *this, *parent = NULL; in ovl_lookup_real_one() local
397 this = lookup_one_len(name.name.name, connected, name.name.len); in ovl_lookup_real_one()
398 err = PTR_ERR(this); in ovl_lookup_real_one()
399 if (IS_ERR(this)) { in ovl_lookup_real_one()
401 } else if (!this || !this->d_inode) { in ovl_lookup_real_one()
402 dput(this); in ovl_lookup_real_one()
405 } else if (ovl_dentry_real_at(this, layer->idx) != real) { in ovl_lookup_real_one()
406 dput(this); in ovl_lookup_real_one()
415 return this; in ovl_lookup_real_one()
420 this = ERR_PTR(err); in ovl_lookup_real_one()
[all …]
Dnamei.c201 struct dentry *this; in ovl_lookup_single() local
205 this = lookup_one_len_unlocked(name, base, namelen); in ovl_lookup_single()
206 if (IS_ERR(this)) { in ovl_lookup_single()
207 err = PTR_ERR(this); in ovl_lookup_single()
208 this = NULL; in ovl_lookup_single()
213 if (!this->d_inode) in ovl_lookup_single()
216 if (ovl_dentry_weird(this)) { in ovl_lookup_single()
221 if (ovl_is_whiteout(this)) { in ovl_lookup_single()
229 if (last_element && d->metacopy && !d_is_reg(this)) { in ovl_lookup_single()
233 if (!d_can_lookup(this)) { in ovl_lookup_single()
[all …]
DKconfig18 If this config option is enabled then overlay filesystems will use
19 redirects when renaming directories by default. In this case it is
25 an overlay which has redirects on a kernel that doesn't support this
35 Disable this to get a possibly more secure configuration, but that
49 If this config option is enabled then overlay filesystems will use
51 In this case it is still possible to turn off index globally with the
60 that doesn't support this feature will have unexpected results.
70 If this config option is enabled then overlay filesystems will use
72 In this case, it is still possible to turn off NFS export support
85 that doesn't support this feature will have unexpected results.
[all …]
/fs/befs/
DKconfig10 attributes. (Also note that this driver doesn't make those features
11 available at this time). It is a 64 bit filesystem, so it supports
14 If you use this filesystem, you should also say Y to at least one
17 If you don't know what this is about, say N.
19 To compile this as a module, choose M here: the module will be
/fs/hfs/
Dstring.c54 int hfs_hash_dentry(const struct dentry *dentry, struct qstr *this) in hfs_hash_dentry() argument
56 const unsigned char *name = this->name; in hfs_hash_dentry()
57 unsigned int hash, len = this->len; in hfs_hash_dentry()
65 this->hash = end_name_hash(hash); in hfs_hash_dentry()
Dbrec.c154 cnid = cpu_to_be32(new_node->this); in hfs_brec_insert()
246 node->this, new_node->this, node->next); in hfs_bnode_split()
248 new_node->prev = node->this; in hfs_bnode_split()
326 node->next = new_node->this; in hfs_bnode_split()
334 next_node->prev = new_node->this; in hfs_bnode_split()
339 } else if (node->this == tree->leaf_tail) { in hfs_bnode_split()
341 tree->leaf_tail = new_node->this; in hfs_bnode_split()
435 cnid = cpu_to_be32(new_node->this); in hfs_brec_update_parent()
477 tree->root = new_node->this; in hfs_btree_inc_height()
479 tree->leaf_head = tree->leaf_tail = new_node->this; in hfs_btree_inc_height()
[all …]
Dbnode.c140 hfs_dbg(BNODE_MOD, "bnode: %d\n", node->this); in hfs_bnode_dump()
229 if (node->this == cnid) { in hfs_bnode_findhash()
255 node->this = cnid; in __hfs_bnode_create()
259 node->tree->cnid, node->this); in __hfs_bnode_create()
302 node->tree->cnid, node->this, atomic_read(&node->refcnt)); in hfs_bnode_unhash()
303 for (p = &node->tree->node_hash[hfs_bnode_hash(node->this)]; in hfs_bnode_unhash()
448 node->tree->cnid, node->this, in hfs_bnode_get()
461 node->tree->cnid, node->this, in hfs_bnode_put()
/fs/
DKconfig15 Enable this to perform validation of the parameter description for a
55 on this option will compile in support for DAX; you will need to
58 If you do not have a block device that is capable of using this,
81 # this symbol for ifdefs in core code.
101 call. Disabling this option saves about 11k.
111 To the best of my knowledge this is dead code that no one cares about.
178 and this option selects support for ACLs specifically for tmpfs
182 this option as there are a number of Linux distros that require
184 For example, some distros need this feature for ALSA-related /dev
196 Currently this enables support for the trusted.* and
[all …]
DKconfig.binfmt16 because it is portable (this does *not* mean that you will be able
47 other. This makes this format ideal for use in environments where no
71 GDB before 6.7 are confused by ELF core dump files in this format.
74 the /proc/PID/coredump_filter pseudo-file; this setting is
87 You can build this support as a module; however, until that module
88 gets loaded, you cannot run scripts. Thus, if you want to load this
90 this module must consist of compiled binaries only.
146 occasional use for this format, enable module support above
147 and answer M here to compile this support as a module called
168 this to work, you need to have the emulator /usr/bin/em86 in place.
[all …]
/fs/gfs2/
Dexport.c147 struct gfs2_inum_host this; in gfs2_fh_to_dentry() local
156 this.no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32; in gfs2_fh_to_dentry()
157 this.no_formal_ino |= be32_to_cpu(fh[1]); in gfs2_fh_to_dentry()
158 this.no_addr = ((u64)be32_to_cpu(fh[2])) << 32; in gfs2_fh_to_dentry()
159 this.no_addr |= be32_to_cpu(fh[3]); in gfs2_fh_to_dentry()
160 return gfs2_get_dentry(sb, &this); in gfs2_fh_to_dentry()
/fs/hfsplus/
Dbrec.c154 cnid = cpu_to_be32(new_node->this); in hfs_brec_insert()
250 node->this, new_node->this, node->next); in hfs_bnode_split()
252 new_node->prev = node->this; in hfs_bnode_split()
330 node->next = new_node->this; in hfs_bnode_split()
338 next_node->prev = new_node->this; in hfs_bnode_split()
343 } else if (node->this == tree->leaf_tail) { in hfs_bnode_split()
345 tree->leaf_tail = new_node->this; in hfs_bnode_split()
439 cnid = cpu_to_be32(new_node->this); in hfs_brec_update_parent()
481 tree->root = new_node->this; in hfs_btree_inc_height()
483 tree->leaf_head = tree->leaf_tail = new_node->this; in hfs_btree_inc_height()
[all …]
Dbtree.c272 node->tree->cnid, node->this, in hfs_btree_close()
456 hfs_dbg(BNODE_MOD, "btree_free_node: %u\n", node->this); in hfs_bmap_free()
457 BUG_ON(!node->this); in hfs_bmap_free()
459 nidx = node->this; in hfs_bmap_free()
473 node->this); in hfs_bmap_free()
485 node->this, node->type); in hfs_bmap_free()
500 node->this, node->type); in hfs_bmap_free()
/fs/affs/
DKconfig10 read with this driver due to an incompatibility of the floppy
15 With this driver you can also mount disk files used by Bernd
18 If you want to do this, you will also need to say Y or M to "Loop
21 To compile this file system support as a module, choose M here: the
/fs/cifs/
DKconfig54 If you need to mount to Samba, Azure, Macs or Windows from this machine, say Y.
60 Enabling this option will allow more detailed statistics on SMB
80 Disabling this option prevents users from using vers=1.0 or vers=2.0
96 Enabling this option allows the cifs module to mount to older
101 network) you probably want to say N. Even if this support
133 not supported at this time.
141 Enabling this option will cause the cifs client to attempt to
154 Enabling this option adds helpful debugging messages to
162 Enabling this option adds a few more debugging routines
173 Enabling this will dump the encryption and decryption keys
[all …]
/fs/squashfs/
DKconfig21 If you want to compile this as a module ( = code which can be
82 using this option may improve overall I/O performance.
135 file systems will be readable without selecting this option.
150 file systems will be readable without selecting this option.
165 file systems will be readable without selecting this option.
179 file systems will be readable without selecting this option.
200 Setting this option will force Squashfs to use a 4K device block
219 the filesystem. Increasing this amount may mean SquashFS
221 of extra system memory. Decreasing this amount will mean
/fs/sysv/
DKconfig25 Note that this option is generally not needed for floppies, since a
28 tar" or preferably "info tar"). Note also that this option has
34 To compile this as a module, choose M here: the module will be called
37 If you haven't heard about all of this before, it's safe to say N.
/fs/ufs/
DKconfig9 this file system as well. Saying Y here will allow you to read from
17 Note that this option is generally not needed for floppies, since a
24 recode ("info recode") for this purpose.
29 If you haven't heard about all of this before, it's safe to say N.
/fs/qnx6/
DKconfig11 However, keep in mind that this currently is a readonly driver!
13 To compile this file system support as a module, choose M here: the
26 want this:
/fs/nilfs2/
DKconfig9 destroyed just a few seconds ago. Since this file system can keep
19 its writable mount, and this feature is convenient for online backup.
24 To compile this file system support as a module, choose M here: the

1234