1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-17 15:27:36 +00:00

Make sure we find all vnode method vectors in /sys.

This commit is contained in:
Poul-Henning Kamp 2003-01-15 19:19:28 +00:00
parent 9b8104b200
commit 06e65af2b0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109317

View File

@ -46,7 +46,7 @@ proc do_file {file} {
close $f
}
set fi [open "|find [glob /usr/src/sys/*fs /usr/src/sys/gnu/*fs] /usr/src/sys/kern -type f -name *.c -print | xargs grep VNODEOP_SET" ]
set fi [open "|find /usr/src/sys -type f -name *.c -print | xargs grep VNODEOP_SET" ]
while {[gets $fi a] >= 0} {
puts stderr $a
if {[regexp {#define} $a]} continue