mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make sure we find all vnode method vectors in /sys.
This commit is contained in:
parent
9b8104b200
commit
06e65af2b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue