Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 28) sorted by relevance

12

/fs/nilfs2/
Dbmap.c573 struct nilfs_bmap_store *store) in nilfs_bmap_save() argument
575 memcpy(store->data, bmap->b_u.u_data, sizeof(store->data)); in nilfs_bmap_save()
576 store->last_allocated_key = bmap->b_last_allocated_key; in nilfs_bmap_save()
577 store->last_allocated_ptr = bmap->b_last_allocated_ptr; in nilfs_bmap_save()
578 store->state = bmap->b_state; in nilfs_bmap_save()
582 const struct nilfs_bmap_store *store) in nilfs_bmap_restore() argument
584 memcpy(bmap->b_u.u_data, store->data, sizeof(store->data)); in nilfs_bmap_restore()
585 bmap->b_last_allocated_key = store->last_allocated_key; in nilfs_bmap_restore()
586 bmap->b_last_allocated_ptr = store->last_allocated_ptr; in nilfs_bmap_restore()
587 bmap->b_state = store->state; in nilfs_bmap_restore()
Dsysfs.h58 ssize_t (*store)(struct kobject *, struct attribute *, \
69 ssize_t (*store)(struct nilfs_##name##_attr *, struct the_nilfs *, \
85 ssize_t (*store)(struct nilfs_##name##_attr *, struct nilfs_root *, \
91 #define NILFS_ATTR(type, name, mode, show, store) \ argument
93 __ATTR(name, mode, show, store)
Dsysfs.c57 return a->store ? a->store(a, nilfs, buf, len) : 0; \
61 .store = nilfs_##name##_attr_store, \
166 return a->store ? a->store(a, root, buf, len) : 0; in nilfs_snapshot_attr_store()
178 .store = nilfs_snapshot_attr_store,
961 return a->store ? a->store(a, nilfs, buf, len) : 0; in nilfs_dev_attr_store()
973 .store = nilfs_dev_attr_store,
/fs/afs/
Drxrpc.c288 n = find_get_pages_contig(op->store.mapping, first, nr, pages); in afs_load_bvec()
295 to = op->store.last_to; in afs_load_bvec()
328 pgoff_t first = op->store.first, last = op->store.last; in afs_send_pages()
331 offset = op->store.first_offset; in afs_send_pages()
332 op->store.first_offset = 0; in afs_send_pages()
352 trace_afs_sent_pages(call, op->store.first, last, first, ret); in afs_send_pages()
389 if (op->store.last == op->store.first) { in afs_make_call()
390 tx_total_len += op->store.last_to - op->store.first_offset; in afs_make_call()
396 tx_total_len += PAGE_SIZE - op->store.first_offset; in afs_make_call()
397 tx_total_len += op->store.last_to; in afs_make_call()
[all …]
Dwrite.c404 if (!op->store.laundering) in afs_store_data_success()
405 afs_pages_written_back(vnode, op->store.first, op->store.last); in afs_store_data_success()
407 atomic_long_add((op->store.last * PAGE_SIZE + op->store.last_to) - in afs_store_data_success()
408 (op->store.first * PAGE_SIZE + op->store.first_offset), in afs_store_data_success()
452 op->store.mapping = mapping; in afs_store_data()
454 op->store.first = first; in afs_store_data()
455 op->store.last = last; in afs_store_data()
456 op->store.first_offset = offset; in afs_store_data()
457 op->store.last_to = to; in afs_store_data()
458 op->store.laundering = laundering; in afs_store_data()
Dyfsclient.c1110 size = (loff_t)op->store.last_to - (loff_t)op->store.first_offset; in yfs_fs_store_data()
1111 if (op->store.first != op->store.last) in yfs_fs_store_data()
1112 size += (loff_t)(op->store.last - op->store.first) << PAGE_SHIFT; in yfs_fs_store_data()
1113 pos = (loff_t)op->store.first << PAGE_SHIFT; in yfs_fs_store_data()
1114 pos += op->store.first_offset; in yfs_fs_store_data()
Dfsclient.c1138 size = (loff_t)op->store.last_to - (loff_t)op->store.first_offset; in afs_fs_store_data()
1139 if (op->store.first != op->store.last) in afs_fs_store_data()
1140 size += (loff_t)(op->store.last - op->store.first) << PAGE_SHIFT; in afs_fs_store_data()
1141 pos = (loff_t)op->store.first << PAGE_SHIFT; in afs_fs_store_data()
1142 pos += op->store.first_offset; in afs_fs_store_data()
/fs/pstore/
DKconfig3 tristate "Persistent store support"
12 (or "M") to a platform specific persistent store driver
14 If you don't have a platform persistent store driver,
210 int "Size in Kbytes of kmsg dump log to store"
221 int "Maximum kmsg dump reason to store"
225 The maximum reason for kmsg dumps to store. The default is
233 int "Size in Kbytes of pmsg to store"
245 int "Size in Kbytes of console log to store"
250 This just sets size of console log (console_size) to store via
257 int "Size in Kbytes of ftrace log to store"
/fs/xfs/
Dxfs_mru_cache.c92 struct radix_tree_root store; /* Core storage data structure. */ member
239 radix_tree_delete(&mru->store, elem->key); in _xfs_mru_cache_clear_reap_list()
355 INIT_RADIX_TREE(&mru->store, GFP_ATOMIC); in xfs_mru_cache_create()
437 error = radix_tree_insert(&mru->store, key, elem); in xfs_mru_cache_insert()
464 elem = radix_tree_delete(&mru->store, key); in xfs_mru_cache_remove()
520 elem = radix_tree_lookup(&mru->store, key); in xfs_mru_cache_lookup()
Dxfs_sysfs.c19 ssize_t (*store)(struct kobject *kobject, const char *buf, member
58 return xfs_attr->store ? xfs_attr->store(kobject, buf, count) : 0; in xfs_sysfs_object_store()
63 .store = xfs_sysfs_object_store,
Dxfs_error.c119 .store = xfs_errortag_attr_store,
DKconfig32 metadata verification, and the ability to store timestamps past the
/fs/gfs2/
Dsys.c33 ssize_t (*store)(struct gfs2_sbd *, const char *, size_t); member
49 return a->store ? a->store(sdp, buf, len) : len; in gfs2_attr_store()
54 .store = gfs2_attr_store,
273 #define GFS2_ATTR(name, mode, show, store) \ argument
274 static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
599 #define TUNE_ATTR_3(name, show, store) \ argument
600 static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
602 #define TUNE_ATTR_2(name, store) \ argument
607 TUNE_ATTR_3(name, name##_show, store)
/fs/dlm/
Dlockspace.c117 ssize_t (*store)(struct dlm_ls *, const char *, size_t); member
122 .store = dlm_control_store
127 .store = dlm_event_store
133 .store = dlm_id_store
139 .store = dlm_nodir_store
176 return a->store ? a->store(ls, buf, len) : len; in dlm_attr_store()
187 .store = dlm_attr_store,
/fs/ocfs2/
Dfilecheck.c131 if (kattr->store) in ocfs2_filecheck_store()
132 ret = kattr->store(kobj, kattr, buf, count); in ocfs2_filecheck_store()
139 .store = ocfs2_filecheck_store,
/fs/f2fs/
Dsysfs.c46 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *, member
627 return a->store ? a->store(a, sbi, buf, len) : 0; in f2fs_attr_store()
686 .store = _store, \
980 .store = f2fs_attr_store,
1023 return a->store ? a->store(a, sbi, buf, len) : 0; in f2fs_stat_attr_store()
1035 .store = f2fs_stat_attr_store,
/fs/sysfs/
Dfile.c139 return ops->store(kobj, of->kn->priv, buf, count); in sysfs_kf_write()
265 if (sysfs_ops->show && sysfs_ops->store) { in sysfs_add_file_mode_ns()
275 } else if (sysfs_ops->store) { in sysfs_add_file_mode_ns()
/fs/orangefs/
Dorangefs-sysfs.c170 ssize_t (*store)(struct kobject *kobj, member
200 if (!attribute->store) in orangefs_attr_store()
202 return attribute->store(kobj, attribute, buf, len); in orangefs_attr_store()
207 .store = orangefs_attr_store,
/fs/configfs/
Dfile.c251 res = buffer->attr->store(buffer->item, buffer->page, count); in flush_write_buffer()
409 if ((type & CONFIGFS_ITEM_ATTR) && !attr->store) in __configfs_open_file()
/fs/ocfs2/cluster/
Dmasklog.c145 .store = mlog_store,
/fs/isofs/
DKconfig35 This is a Linux-specific extension to RockRidge which lets you store
/fs/romfs/
Dstorage.c14 #error no ROMFS backing store interface configured
/fs/nfsd/
DKconfig65 To store ACLs on your NFS server, you also need to enable ACL-
/fs/ext4/
Dsysfs.c497 .store = ext4_attr_store,
/fs/cifs/
DKconfig132 The system namespace (used by some filesystems to store ACLs) is

12