@@ -2083,6 +2083,9 @@ fn test_android(target: &str) {
2083
2083
| "PF_BLOCK_TS"
2084
2084
| "PF_SUSPEND_TASK" => true ,
2085
2085
2086
+ // FIXME(android): Requires >= 6.12 kernel headers.
2087
+ "SOF_TIMESTAMPING_OPT_RX_FILTER" => true ,
2088
+
2086
2089
_ => false ,
2087
2090
}
2088
2091
} ) ;
@@ -2312,6 +2315,7 @@ fn test_freebsd(target: &str) {
2312
2315
"sys/thr.h" ,
2313
2316
"sys/time.h" ,
2314
2317
[ freebsd14 || freebsd15] : "sys/timerfd.h" ,
2318
+ [ freebsd13 || freebsd14 || freebsd15] : "dev/evdev/input.h" ,
2315
2319
"sys/times.h" ,
2316
2320
"sys/timex.h" ,
2317
2321
"sys/types.h" ,
@@ -2385,6 +2389,7 @@ fn test_freebsd(target: &str) {
2385
2389
"type_" if struct_ == "rtprio" => "type" . to_string ( ) ,
2386
2390
"type_" if struct_ == "sockstat" => "type" . to_string ( ) ,
2387
2391
"type_" if struct_ == "devstat_match_table" => "type" . to_string ( ) ,
2392
+ "type_" if struct_ == "input_event" => "type" . to_string ( ) ,
2388
2393
s => s. to_string ( ) ,
2389
2394
}
2390
2395
} ) ;
@@ -4336,6 +4341,12 @@ fn test_linux(target: &str) {
4336
4341
// FIXME: Requires >= 6.11 kernel headers.
4337
4342
"MAP_DROPPABLE" => true ,
4338
4343
4344
+ // FIXME(linux): Requires >= 6.2 kernel headers.
4345
+ "SOF_TIMESTAMPING_OPT_ID_TCP" => true ,
4346
+
4347
+ // FIXME(linux): Requires >= 6.12 kernel headers.
4348
+ "SOF_TIMESTAMPING_OPT_RX_FILTER" => true ,
4349
+
4339
4350
_ => false ,
4340
4351
}
4341
4352
} ) ;
0 commit comments