File tree Expand file tree Collapse file tree 2 files changed +11
-16
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +11
-16
lines changed Original file line number Diff line number Diff line change @@ -2069,6 +2069,8 @@ SOF_TIMESTAMPING_SOFTWARE
20692069SOF_TIMESTAMPING_SYS_HARDWARE
20702070SOF_TIMESTAMPING_TX_HARDWARE
20712071SOF_TIMESTAMPING_TX_SOFTWARE
2072+ SOF_TXTIME_DEADLINE_MODE
2073+ SOF_TXTIME_REPORT_ERRORS
20722074SOL_AAL
20732075SOL_ALG
20742076SOL_ATM
@@ -3063,6 +3065,7 @@ sigwaitinfo
30633065sock_extended_err
30643066sock_filter
30653067sock_fprog
3068+ sock_txtime
30663069sockaddr_alg
30673070sockaddr_can
30683071sockaddr_ll
Original file line number Diff line number Diff line change @@ -685,16 +685,12 @@ s_no_extra_traits! {
685685 }
686686}
687687
688- cfg_if ! {
689- if #[ cfg( not( all( target_env = "musl" , target_arch = "mips" ) ) ) ] {
690- s_no_extra_traits! {
691- // linux/net_tstamp.h
692- #[ allow( missing_debug_implementations) ]
693- pub struct sock_txtime {
694- pub clockid: :: clockid_t,
695- pub flags: :: __u32,
696- }
697- }
688+ s_no_extra_traits ! {
689+ // linux/net_tstamp.h
690+ #[ allow( missing_debug_implementations) ]
691+ pub struct sock_txtime {
692+ pub clockid: :: clockid_t,
693+ pub flags: :: __u32,
698694 }
699695}
700696
@@ -2663,12 +2659,8 @@ pub const SOF_TIMESTAMPING_RX_SOFTWARE: ::c_uint = 1 << 3;
26632659pub const SOF_TIMESTAMPING_SOFTWARE : :: c_uint = 1 << 4 ;
26642660pub const SOF_TIMESTAMPING_SYS_HARDWARE : :: c_uint = 1 << 5 ;
26652661pub const SOF_TIMESTAMPING_RAW_HARDWARE : :: c_uint = 1 << 6 ;
2666- cfg_if ! {
2667- if #[ cfg( not( all( target_env = "musl" , target_arch = "mips" ) ) ) ] {
2668- pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
2669- pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
2670- }
2671- }
2662+ pub const SOF_TXTIME_DEADLINE_MODE : u32 = 1 << 0 ;
2663+ pub const SOF_TXTIME_REPORT_ERRORS : u32 = 1 << 1 ;
26722664
26732665// linux/if_alg.h
26742666pub const ALG_SET_KEY : :: c_int = 1 ;
You can’t perform that action at this time.
0 commit comments