File tree 5 files changed +21
-0
lines changed
5 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -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
} ) ;
@@ -4338,6 +4341,12 @@ fn test_linux(target: &str) {
4338
4341
// FIXME: Requires >= 6.11 kernel headers.
4339
4342
"MAP_DROPPABLE" => true ,
4340
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
+
4341
4350
_ => false ,
4342
4351
}
4343
4352
} ) ;
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 @@ -2942,6 +2942,9 @@ pub const SOF_TIMESTAMPING_OPT_TSONLY: c_uint = 1 << 11;
2942
2942
pub const SOF_TIMESTAMPING_OPT_STATS : c_uint = 1 << 12 ;
2943
2943
pub const SOF_TIMESTAMPING_OPT_PKTINFO : c_uint = 1 << 13 ;
2944
2944
pub const SOF_TIMESTAMPING_OPT_TX_SWHW : c_uint = 1 << 14 ;
2945
+ pub const SOF_TIMESTAMPING_BIND_PHC : c_uint = 1 << 15 ;
2946
+ pub const SOF_TIMESTAMPING_OPT_ID_TCP : c_uint = 1 << 16 ;
2947
+ pub const SOF_TIMESTAMPING_OPT_RX_FILTER : c_uint = 1 << 17 ;
2945
2948
2946
2949
#[ deprecated(
2947
2950
since = "0.2.55" ,
Original file line number Diff line number Diff line change @@ -4544,6 +4544,9 @@ pub const SOF_TIMESTAMPING_OPT_TSONLY: c_uint = 1 << 11;
4544
4544
pub const SOF_TIMESTAMPING_OPT_STATS : c_uint = 1 << 12 ;
4545
4545
pub const SOF_TIMESTAMPING_OPT_PKTINFO : c_uint = 1 << 13 ;
4546
4546
pub const SOF_TIMESTAMPING_OPT_TX_SWHW : c_uint = 1 << 14 ;
4547
+ pub const SOF_TIMESTAMPING_BIND_PHC : c_uint = 1 << 15 ;
4548
+ pub const SOF_TIMESTAMPING_OPT_ID_TCP : c_uint = 1 << 16 ;
4549
+ pub const SOF_TIMESTAMPING_OPT_RX_FILTER : c_uint = 1 << 17 ;
4547
4550
pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
4548
4551
pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
4549
4552
You can’t perform that action at this time.
0 commit comments