Searched refs:show (Results 1 - 25 of 47) sorted by relevance

12

/fs/xfs/
H A Dxfs_sysfs.c27 ssize_t (*show)(char *buf, void *data); member in struct:xfs_sysfs_attr
45 * xfs_mount kobject. This currently has no attributes and thus no need for show
100 return xfs_attr->show ? xfs_attr->show(buf, NULL) : 0;
116 .show = xfs_dbg_show,
214 return xfs_attr->show ? xfs_attr->show(buf, log) : 0;
231 .show = xfs_log_show,
/fs/exofs/
H A Dsys.c29 ssize_t (*show)(struct exofs_dev *, char *); member in struct:odev_attr
39 return a->show ? a->show(edp, buf) : 0;
52 .show = odev_attr_show,
94 #define OSD_ATTR(name, mode, show, store) \
96 __ATTR(name, mode, show, store)
/fs/nilfs2/
H A Dsysfs.h65 ssize_t (*show)(struct kobject *, struct attribute *, \
76 ssize_t (*show)(struct nilfs_##name##_attr *, struct the_nilfs *, \
92 ssize_t (*show)(struct nilfs_##name##_attr *, struct nilfs_root *, \
100 #define NILFS_ATTR(type, name, mode, show, store) \
102 __ATTR(name, mode, show, store)
H A Dsysfs.c54 return a->show ? a->show(a, nilfs, buf) : 0; \
69 .show = nilfs_##name##_attr_show, \
165 return a->show ? a->show(a, root, buf) : 0;
188 .show = nilfs_snapshot_attr_show,
960 return a->show ? a->show(a, nilfs, buf) : 0;
983 .show = nilfs_dev_attr_show,
/fs/proc/
H A Dinterrupts.c33 .show = show_interrupts
H A Ddevices.c50 .show = devinfo_show
H A Dconsoles.c92 .show = show_console_dev
H A Dnommu.c113 .show = nommu_region_list_show
H A Dproc_net.c64 int (*show)(struct seq_file *, void *))
74 err = single_open(file, show, net);
H A Dproc_tty.c124 .show = show_tty_driver
/fs/dlm/
H A Dconfig.c129 ssize_t (*show)(struct dlm_cluster *, char *); member in struct:cluster_attribute
151 .show = cluster_cluster_name_read,
229 ssize_t (*show)(struct dlm_comm *, char *); member in struct:comm_attribute
237 .show = comm_nodeid_read,
245 .show = comm_local_read,
260 .show = comm_addr_list_read,
278 ssize_t (*show)(struct dlm_node *, char *); member in struct:node_attribute
286 .show = node_nodeid_read,
294 .show = node_weight_read,
696 return cla->show
[all...]
H A Dlockspace.c116 ssize_t (*show)(struct dlm_ls *, char *); member in struct:dlm_attr
132 .show = dlm_id_show,
138 .show = dlm_nodir_show,
144 .show = dlm_recover_status_show
149 .show = dlm_recover_nodeid_show
167 return a->show ? a->show(ls, buf) : 0;
185 .show = dlm_attr_show,
/fs/ocfs2/cluster/
H A Dnodemanager.c354 ssize_t (*show)(struct o2nm_node *, char *); member in struct:o2nm_node_attribute
362 .show = o2nm_node_num_read,
370 .show = o2nm_node_ipv4_port_read,
378 .show = o2nm_node_ipv4_address_read,
386 .show = o2nm_node_local_read,
418 if (o2nm_node_attr->show)
419 ret = o2nm_node_attr->show(node, page);
480 ssize_t (*show)(struct o2nm_cluster *, char *); member in struct:o2nm_cluster_attribute
627 .show = o2nm_cluster_attr_idle_timeout_ms_read,
635 .show
[all...]
H A Dheartbeat.c1891 ssize_t (*show)(struct o2hb_region *, char *); member in struct:o2hb_region_attribute
1899 .show = o2hb_region_block_bytes_read,
1907 .show = o2hb_region_start_block_read,
1915 .show = o2hb_region_blocks_read,
1923 .show = o2hb_region_dev_read,
1931 .show = o2hb_region_pid_read,
1952 if (o2hb_region_attr->show)
1953 ret = o2hb_region_attr->show(reg, page);
2171 ssize_t (*show)(struct o2hb_heartbeat_group *, char *); member in struct:o2hb_heartbeat_group_attribute
2184 if (o2hb_heartbeat_group_attr->show)
[all...]
H A Dmasklog.c124 .show = mlog_show,
/fs/gfs2/
H A Dsys.c34 ssize_t (*show)(struct gfs2_sbd *, char *); member in struct:gfs2_attr
43 return a->show ? a->show(sdp, buf) : 0;
55 .show = gfs2_attr_show,
260 #define GFS2_ATTR(name, mode, show, store) \
261 static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
571 #define TUNE_ATTR_3(name, show, store) \
572 static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
/fs/notify/
H A Dfdinfo.c24 int (*show)(struct seq_file *m, struct fsnotify_mark *mark))
32 ret = show(m, mark);
/fs/btrfs/
H A Dsysfs.h19 .show = _show, \
/fs/cachefiles/
H A Dproc.c84 .show = cachefiles_histogram_show,
/fs/fscache/
H A Dhistogram.c90 .show = fscache_histogram_show,
/fs/sysfs/
H A Dfile.c40 * sysfs_ops->show() result through seq_file.
59 * Invoke show(). Control may reach here via seq file lseek even
60 * if @ops->show() isn't implemented.
62 if (ops->show) {
63 count = ops->show(kobj, of->kn->priv, buf);
74 (unsigned long)ops->show);
225 if (sysfs_ops->show && sysfs_ops->store)
227 else if (sysfs_ops->show)
/fs/
H A Dproc_namespace.c223 int (*show)(struct seq_file *, struct vfsmount *))
267 p->show = show;
H A Dmount.h120 int (*show)(struct seq_file *, struct vfsmount *); member in struct:proc_mounts
H A Dseq_file.c53 * returns the next element of sequence. @op->show() prints element
55 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
120 error = m->op->show(m, p);
234 err = m->op->show(m, p);
269 err = m->op->show(m, p);
596 int single_open(struct file *file, int (*show)(struct seq_file *, void *),
606 op->show = show;
617 int single_open_size(struct file *file, int (*show)(struct seq_file *, void *),
624 ret = single_open(file, show, dat
[all...]
/fs/afs/
H A Dproc.c35 .show = afs_proc_cells_show,
69 .show = afs_proc_cell_volumes_show,
91 .show = afs_proc_cell_vlservers_show,
112 .show = afs_proc_cell_servers_show,

Completed in 1136 milliseconds

12