Home
last modified time | relevance | path

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

/freebsd-13.1/sys/compat/lindebugfs/
H A Dlindebugfs.c86 const struct file_operations *dm_fops; member
142 rc = d->dm_fops->open(&vn, &lf); in debugfs_fill()
152 if (d->dm_fops->read) in debugfs_fill()
153 rc = d->dm_fops->read(&lf, NULL, len, &off); in debugfs_fill()
157 if (d->dm_fops->write) in debugfs_fill()
158 rc = d->dm_fops->write(&lf, buf, len, &off); in debugfs_fill()
162 if (d->dm_fops->release) in debugfs_fill()
163 d->dm_fops->release(&vn, &lf); in debugfs_fill()
200 dm->dm_fops = fops; in debugfs_create_file()