Lines Matching defs:data

175 			ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
176 if (!ui->data) {
180 memcpy(ui->data, ino->data, ui->data_len);
181 ((char *)ui->data)[ui->data_len] = '\0';
201 ui->data = kmalloc(ui->data_len + 1, GFP_NOFS);
202 if (!ui->data) {
206 memcpy(ui->data, ino->data, ui->data_len);
207 ((char *)ui->data)[ui->data_len] = '\0';
215 ui->data = kmalloc(sizeof(union ubifs_dev_desc), GFP_NOFS);
216 if (!ui->data) {
221 dev = (union ubifs_dev_desc *)ino->data;
230 memcpy(ui->data, ino->data, ui->data_len);
287 kfree(ui->data);
474 * lots of data into the queues, and there will be the second
632 * fully filled with data nodes of maximum size. This is used in
722 * Note, data, which may be stored in inodes is budgeted separately, so
966 * Opt_chk_data_crc: check CRCs when reading data nodes
967 * Opt_no_chk_data_crc: do not check CRCs when reading data nodes
1175 * destroy_journal - destroy journal data structures.
1178 * This function destroys journal data structures including those that may have
1579 dbg_gen("data journal heads: %d",
1598 dbg_gen("node sizes: data %zu, inode %zu, dentry %zu",
1604 dbg_gen("max. node sizes: data %zu, inode %zu dentry %zu, idx %d",
2007 static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data)
2015 err = ubifs_parse_options(c, data, 1);
2183 static int ubifs_fill_super(struct super_block *sb, void *data, int silent)
2197 err = ubifs_parse_options(c, data, 0);
2265 static int sb_test(struct super_block *sb, void *data)
2267 struct ubifs_info *c1 = data;
2273 static int sb_set(struct super_block *sb, void *data)
2275 sb->s_fs_info = data;
2280 const char *name, void *data)
2327 err = ubifs_fill_super(sb, data, flags & SB_SILENT ? 1 : 0);