Home
last modified time | relevance | path

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

/linux/drivers/net/wireless/broadcom/b43legacy/
H A Ddebugfs.c42 const struct b43legacy_debugfs_fops *dfops) in fops_to_dfs_file() argument
47 p += dfops->file_struct_offset; in fops_to_dfs_file()
190 const struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_read() local
209 dfops = debugfs_get_aux(file); in b43legacy_debugfs_read()
210 if (!dfops->read) { in b43legacy_debugfs_read()
214 dfile = fops_to_dfs_file(dev, dfops); in b43legacy_debugfs_read()
222 if (dfops->take_irqlock) { in b43legacy_debugfs_read()
224 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
227 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
256 const struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_write() local
[all …]
/linux/drivers/net/wireless/broadcom/b43/
H A Ddebugfs.c39 const struct b43_debugfs_fops *dfops) in fops_to_dfs_file() argument
44 p += dfops->file_struct_offset; in fops_to_dfs_file()
493 const struct b43_debugfs_fops *dfops; in b43_debugfs_read() local
512 dfops = debugfs_get_aux(file); in b43_debugfs_read()
513 if (!dfops->read) { in b43_debugfs_read()
517 dfile = fops_to_dfs_file(dev, dfops); in b43_debugfs_read()
525 ret = dfops->read(dev, buf, bufsize); in b43_debugfs_read()
554 const struct b43_debugfs_fops *dfops; in b43_debugfs_write() local
572 dfops = debugfs_get_aux(file); in b43_debugfs_write()
573 if (!dfops->write) { in b43_debugfs_write()
[all …]
/linux/drivers/net/wireless/ath/carl9170/
H A Ddebug.c64 const struct carl9170_debugfs_fops *dfops; in carl9170_debugfs_read() local
77 dfops = debugfs_get_aux(file); in carl9170_debugfs_read()
79 if (!dfops->read) in carl9170_debugfs_read()
82 if (dfops->read_bufsize) { in carl9170_debugfs_read()
83 buf = vmalloc(dfops->read_bufsize); in carl9170_debugfs_read()
89 if (!CHK_DEV_STATE(ar, dfops->req_dev_state)) { in carl9170_debugfs_read()
95 res_buf = dfops->read(ar, buf, dfops->read_bufsize, &ret); in carl9170_debugfs_read()
103 WARN_ON_ONCE(dfops->read_bufsize && (res_buf != buf)); in carl9170_debugfs_read()
114 const struct carl9170_debugfs_fops *dfops; in carl9170_debugfs_write() local
129 dfops = debugfs_get_aux(file); in carl9170_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()