File tree 5 files changed +18
-0
lines changed
5 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -2024,6 +2024,9 @@ fn test_android(target: &str) {
2024
2024
| "PF_BLOCK_TS"
2025
2025
| "PF_SUSPEND_TASK" => true ,
2026
2026
2027
+ // FIXME(android): Requires >= 6.12 kernel headers.
2028
+ "SOF_TIMESTAMPING_OPT_RX_FILTER" => true ,
2029
+
2027
2030
_ => false ,
2028
2031
}
2029
2032
} ) ;
@@ -4263,6 +4266,9 @@ fn test_linux(target: &str) {
4263
4266
// FIXME(linux): Requires >= 6.11 kernel headers.
4264
4267
"MAP_DROPPABLE" => true ,
4265
4268
4269
+ // FIXME(linux): Requires >= 6.12 kernel headers.
4270
+ "SOF_TIMESTAMPING_OPT_RX_FILTER" => true ,
4271
+
4266
4272
_ => false ,
4267
4273
}
4268
4274
} ) ;
Original file line number Diff line number Diff line change @@ -2385,9 +2385,12 @@ SOCK_RAW
2385
2385
SOCK_RDM
2386
2386
SOCK_SEQPACKET
2387
2387
SOCK_STREAM
2388
+ SOF_TIMESTAMPING_BIND_PHC
2388
2389
SOF_TIMESTAMPING_OPT_CMSG
2389
2390
SOF_TIMESTAMPING_OPT_ID
2391
+ SOF_TIMESTAMPING_OPT_ID_TCP
2390
2392
SOF_TIMESTAMPING_OPT_PKTINFO
2393
+ SOF_TIMESTAMPING_OPT_RX_FILTER
2391
2394
SOF_TIMESTAMPING_OPT_STATS
2392
2395
SOF_TIMESTAMPING_OPT_TSONLY
2393
2396
SOF_TIMESTAMPING_OPT_TX_SWHW
Original file line number Diff line number Diff line change @@ -2898,9 +2898,12 @@ SOCK_NONBLOCK
2898
2898
SOCK_PACKET
2899
2899
SOCK_RAW
2900
2900
SOCK_RDM
2901
+ SOF_TIMESTAMPING_BIND_PHC
2901
2902
SOF_TIMESTAMPING_OPT_CMSG
2902
2903
SOF_TIMESTAMPING_OPT_ID
2904
+ SOF_TIMESTAMPING_OPT_ID_TCP
2903
2905
SOF_TIMESTAMPING_OPT_PKTINFO
2906
+ SOF_TIMESTAMPING_OPT_RX_FILTER
2904
2907
SOF_TIMESTAMPING_OPT_STATS
2905
2908
SOF_TIMESTAMPING_OPT_TSONLY
2906
2909
SOF_TIMESTAMPING_OPT_TX_SWHW
Original file line number Diff line number Diff line change @@ -2900,6 +2900,9 @@ pub const SOF_TIMESTAMPING_OPT_TSONLY: c_uint = 1 << 11;
2900
2900
pub const SOF_TIMESTAMPING_OPT_STATS : c_uint = 1 << 12 ;
2901
2901
pub const SOF_TIMESTAMPING_OPT_PKTINFO : c_uint = 1 << 13 ;
2902
2902
pub const SOF_TIMESTAMPING_OPT_TX_SWHW : c_uint = 1 << 14 ;
2903
+ pub const SOF_TIMESTAMPING_BIND_PHC : c_uint = 1 << 15 ;
2904
+ pub const SOF_TIMESTAMPING_OPT_ID_TCP : c_uint = 1 << 16 ;
2905
+ pub const SOF_TIMESTAMPING_OPT_RX_FILTER : c_uint = 1 << 17 ;
2903
2906
2904
2907
#[ deprecated(
2905
2908
since = "0.2.55" ,
Original file line number Diff line number Diff line change @@ -4581,6 +4581,9 @@ pub const SOF_TIMESTAMPING_OPT_TSONLY: c_uint = 1 << 11;
4581
4581
pub const SOF_TIMESTAMPING_OPT_STATS : c_uint = 1 << 12 ;
4582
4582
pub const SOF_TIMESTAMPING_OPT_PKTINFO : c_uint = 1 << 13 ;
4583
4583
pub const SOF_TIMESTAMPING_OPT_TX_SWHW : c_uint = 1 << 14 ;
4584
+ pub const SOF_TIMESTAMPING_BIND_PHC : c_uint = 1 << 15 ;
4585
+ pub const SOF_TIMESTAMPING_OPT_ID_TCP : c_uint = 1 << 16 ;
4586
+ pub const SOF_TIMESTAMPING_OPT_RX_FILTER : c_uint = 1 << 17 ;
4584
4587
pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
4585
4588
pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
4586
4589
You can’t perform that action at this time.
0 commit comments