devfs_vnops.c (246e7a2b6494cd991b08ac669ed761ecea0cc98c) | devfs_vnops.c (9696feebe2320c9976607df4090f91a34c6549c3) |
---|---|
1/*- 2 * Copyright (c) 2000-2004 3 * Poul-Henning Kamp. All rights reserved. 4 * Copyright (c) 1989, 1992-1993, 1995 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software donated to Berkeley by 8 * Jan-Simon Pendry. --- 1686 unchanged lines hidden (view full) --- 1695 .fo_poll = devfs_poll_f, 1696 .fo_kqfilter = devfs_kqfilter_f, 1697 .fo_stat = devfs_stat_f, 1698 .fo_close = devfs_close_f, 1699 .fo_chmod = vn_chmod, 1700 .fo_chown = vn_chown, 1701 .fo_sendfile = vn_sendfile, 1702 .fo_seek = vn_seek, | 1/*- 2 * Copyright (c) 2000-2004 3 * Poul-Henning Kamp. All rights reserved. 4 * Copyright (c) 1989, 1992-1993, 1995 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software donated to Berkeley by 8 * Jan-Simon Pendry. --- 1686 unchanged lines hidden (view full) --- 1695 .fo_poll = devfs_poll_f, 1696 .fo_kqfilter = devfs_kqfilter_f, 1697 .fo_stat = devfs_stat_f, 1698 .fo_close = devfs_close_f, 1699 .fo_chmod = vn_chmod, 1700 .fo_chown = vn_chown, 1701 .fo_sendfile = vn_sendfile, 1702 .fo_seek = vn_seek, |
1703 .fo_fill_kinfo = vn_fill_kinfo, |
|
1703 .fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE 1704}; 1705 1706static struct vop_vector devfs_vnodeops = { 1707 .vop_default = &default_vnodeops, 1708 1709 .vop_access = devfs_access, 1710 .vop_getattr = devfs_getattr, --- 64 unchanged lines hidden --- | 1704 .fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE 1705}; 1706 1707static struct vop_vector devfs_vnodeops = { 1708 .vop_default = &default_vnodeops, 1709 1710 .vop_access = devfs_access, 1711 .vop_getattr = devfs_getattr, --- 64 unchanged lines hidden --- |