Skip to content

Commit 4f1136a

Browse files
t-8chJoelgranados
authored andcommitted
scripts: check-sysctl-docs: handle per-namespace sysctls
Some sysctl tables are registered for each namespace. (Like in ipc/ipc_sysctl.c) These need special handling to track the variable assignments. Signed-off-by: Thomas Weißschuh <[email protected]> Reviewed-by: Joel Granados <[email protected]> Signed-off-by: Joel Granados <[email protected]>
1 parent 8e88291 commit 4f1136a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

scripts/check-sysctl-docs

+20
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ BEGINFILE {
9393
delete entries
9494
curtable = ""
9595
curentry = ""
96+
delete vars
9697
if (debug) print "Processing file " FILENAME
9798
}
9899

@@ -105,6 +106,7 @@ BEGINFILE {
105106
/^};$/ {
106107
curtable = ""
107108
curentry = ""
109+
delete vars
108110
}
109111

110112
curtable && /\.procname[\t ]*=[\t ]*".+"/ {
@@ -125,6 +127,24 @@ curtable && /\.procname[\t ]*=[\t ]*".+"/ {
125127
}
126128
}
127129

130+
/kmemdup.*/ {
131+
match($0, /([^ \t]+) *= *kmemdup\(([^,]+) *,/, names)
132+
if (debug) print "Found variable " names[1] " for table " names[2]
133+
if (names[2] in entries) {
134+
vars[names[1]] = names[2]
135+
}
136+
}
137+
138+
/__register_sysctl_table.*/ {
139+
match($0, /__register_sysctl_table\([^,]+, *"([^"]+)" *, *([^,]+)/, tables)
140+
if (debug) print "Registering variable table " tables[2] " at " tables[1]
141+
if (tables[1] == table && tables[2] in vars) {
142+
for (entry in entries[vars[tables[2]]]) {
143+
printentry(entry)
144+
}
145+
}
146+
}
147+
128148
END {
129149
for (entry in documented) {
130150
if (!seen[entry]) {

0 commit comments

Comments
 (0)