Home
last modified time | relevance | path

Searched refs:dfops (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/net/wireless/broadcom/b43legacy/
H A Ddebugfs.c43 const struct b43legacy_debugfs_fops *dfops) in fops_to_dfs_file() argument
48 p += dfops->file_struct_offset; in fops_to_dfs_file()
191 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_read() local
211 dfops = container_of(debugfs_real_fops(file), in b43legacy_debugfs_read()
213 if (!dfops->read) { in b43legacy_debugfs_read()
217 dfile = fops_to_dfs_file(dev, dfops); in b43legacy_debugfs_read()
226 if (dfops->take_irqlock) { in b43legacy_debugfs_read()
228 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
231 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
260 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_write() local
[all …]
/linux/drivers/net/wireless/ath/carl9170/
H A Ddebug.c65 struct carl9170_debugfs_fops *dfops; in carl9170_debugfs_read() local
78 dfops = container_of(debugfs_real_fops(file), in carl9170_debugfs_read()
81 if (!dfops->read) in carl9170_debugfs_read()
84 if (dfops->read_bufsize) { in carl9170_debugfs_read()
85 buf = vmalloc(dfops->read_bufsize); in carl9170_debugfs_read()
91 if (!CHK_DEV_STATE(ar, dfops->req_dev_state)) { in carl9170_debugfs_read()
97 res_buf = dfops->read(ar, buf, dfops->read_bufsize, &ret); in carl9170_debugfs_read()
105 WARN_ON_ONCE(dfops->read_bufsize && (res_buf != buf)); in carl9170_debugfs_read()
116 struct carl9170_debugfs_fops *dfops; in carl9170_debugfs_write() local
131 dfops = container_of(debugfs_real_fops(file), in carl9170_debugfs_write()
[all …]
/linux/drivers/net/wireless/broadcom/b43/
H A Ddebugfs.c40 const struct b43_debugfs_fops *dfops) in fops_to_dfs_file() argument
45 p += dfops->file_struct_offset; in fops_to_dfs_file()
494 struct b43_debugfs_fops *dfops; in b43_debugfs_read() local
514 dfops = container_of(debugfs_real_fops(file), in b43_debugfs_read()
516 if (!dfops->read) { in b43_debugfs_read()
520 dfile = fops_to_dfs_file(dev, dfops); in b43_debugfs_read()
529 ret = dfops->read(dev, buf, bufsize); in b43_debugfs_read()
558 struct b43_debugfs_fops *dfops; in b43_debugfs_write() local
576 dfops = container_of(debugfs_real_fops(file), in b43_debugfs_write()
578 if (!dfops->write) { in b43_debugfs_write()
[all …]
/linux/fs/xfs/libxfs/
H A Dxfs_defer.c533 struct list_head *dfops) in xfs_defer_relog() argument
542 list_for_each_entry(dfp, dfops, dfp_list) { in xfs_defer_relog()
824 struct list_head *dfops, in xfs_defer_alloc() argument
833 list_add_tail(&dfp->dfp_list, dfops); in xfs_defer_alloc()
/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dcmd.c1503 static const struct file_operations dfops = { variable
1592 debugfs_create_file("in", 0400, dbg->dbg_root, dev, &dfops); in create_debugfs_files()
1593 debugfs_create_file("out", 0200, dbg->dbg_root, dev, &dfops); in create_debugfs_files()