File tree Expand file tree Collapse file tree 5 files changed +21
-0
lines changed Expand file tree Collapse file tree 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) {
20832083 | "PF_BLOCK_TS"
20842084 | "PF_SUSPEND_TASK" => true ,
20852085
2086+ // FIXME(android): Requires >= 6.12 kernel headers.
2087+ "SOF_TIMESTAMPING_OPT_RX_FILTER" => true ,
2088+
20862089 _ => false ,
20872090 }
20882091 } ) ;
@@ -4338,6 +4341,12 @@ fn test_linux(target: &str) {
43384341 // FIXME: Requires >= 6.11 kernel headers.
43394342 "MAP_DROPPABLE" => true ,
43404343
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+
43414350 _ => false ,
43424351 }
43434352 } ) ;
Original file line number Diff line number Diff line change @@ -2385,9 +2385,12 @@ SOCK_RAW
23852385SOCK_RDM
23862386SOCK_SEQPACKET
23872387SOCK_STREAM
2388+ SOF_TIMESTAMPING_BIND_PHC
23882389SOF_TIMESTAMPING_OPT_CMSG
23892390SOF_TIMESTAMPING_OPT_ID
2391+ SOF_TIMESTAMPING_OPT_ID_TCP
23902392SOF_TIMESTAMPING_OPT_PKTINFO
2393+ SOF_TIMESTAMPING_OPT_RX_FILTER
23912394SOF_TIMESTAMPING_OPT_STATS
23922395SOF_TIMESTAMPING_OPT_TSONLY
23932396SOF_TIMESTAMPING_OPT_TX_SWHW
Original file line number Diff line number Diff line change @@ -2898,9 +2898,12 @@ SOCK_NONBLOCK
28982898SOCK_PACKET
28992899SOCK_RAW
29002900SOCK_RDM
2901+ SOF_TIMESTAMPING_BIND_PHC
29012902SOF_TIMESTAMPING_OPT_CMSG
29022903SOF_TIMESTAMPING_OPT_ID
2904+ SOF_TIMESTAMPING_OPT_ID_TCP
29032905SOF_TIMESTAMPING_OPT_PKTINFO
2906+ SOF_TIMESTAMPING_OPT_RX_FILTER
29042907SOF_TIMESTAMPING_OPT_STATS
29052908SOF_TIMESTAMPING_OPT_TSONLY
29062909SOF_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;
29422942pub const SOF_TIMESTAMPING_OPT_STATS : c_uint = 1 << 12 ;
29432943pub const SOF_TIMESTAMPING_OPT_PKTINFO : c_uint = 1 << 13 ;
29442944pub 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 ;
29452948
29462949#[ deprecated(
29472950 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;
45444544pub const SOF_TIMESTAMPING_OPT_STATS : c_uint = 1 << 12 ;
45454545pub const SOF_TIMESTAMPING_OPT_PKTINFO : c_uint = 1 << 13 ;
45464546pub 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 ;
45474550pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
45484551pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
45494552
You can’t perform that action at this time.
0 commit comments