diff --git a/libc-test/semver/linux.txt b/libc-test/semver/linux.txt index ab9f39f03fd1b..5bdb3143d29f8 100644 --- a/libc-test/semver/linux.txt +++ b/libc-test/semver/linux.txt @@ -2077,6 +2077,14 @@ SOF_TIMESTAMPING_SOFTWARE SOF_TIMESTAMPING_SYS_HARDWARE SOF_TIMESTAMPING_TX_HARDWARE SOF_TIMESTAMPING_TX_SOFTWARE +SOF_TIMESTAMPING_OPT_ID +SOF_TIMESTAMPING_TX_SCHED +SOF_TIMESTAMPING_TX_ACK +SOF_TIMESTAMPING_OPT_CMSG +SOF_TIMESTAMPING_OPT_TSONLY +SOF_TIMESTAMPING_OPT_STATS +SOF_TIMESTAMPING_OPT_PKTINFO +SOF_TIMESTAMPING_OPT_TX_SWHW SOF_TXTIME_DEADLINE_MODE SOF_TXTIME_REPORT_ERRORS SOL_AAL diff --git a/src/unix/linux_like/linux/mod.rs b/src/unix/linux_like/linux/mod.rs index aba691e5a85c6..97c0cfb192d8c 100644 --- a/src/unix/linux_like/linux/mod.rs +++ b/src/unix/linux_like/linux/mod.rs @@ -2673,6 +2673,14 @@ pub const SOF_TIMESTAMPING_RX_SOFTWARE: ::c_uint = 1 << 3; pub const SOF_TIMESTAMPING_SOFTWARE: ::c_uint = 1 << 4; pub const SOF_TIMESTAMPING_SYS_HARDWARE: ::c_uint = 1 << 5; pub const SOF_TIMESTAMPING_RAW_HARDWARE: ::c_uint = 1 << 6; +pub const SOF_TIMESTAMPING_OPT_ID: ::c_uint = 1 << 7; +pub const SOF_TIMESTAMPING_TX_SCHED: ::c_uint = 1 << 8; +pub const SOF_TIMESTAMPING_TX_ACK: ::c_uint = 1 << 9; +pub const SOF_TIMESTAMPING_OPT_CMSG: ::c_uint = 1 << 10; +pub const SOF_TIMESTAMPING_OPT_TSONLY: ::c_uint = 1 << 11; +pub const SOF_TIMESTAMPING_OPT_STATS: ::c_uint = 1 << 12; +pub const SOF_TIMESTAMPING_OPT_PKTINFO: ::c_uint = 1 << 13; +pub const SOF_TIMESTAMPING_OPT_TX_SWHW: ::c_uint = 1 << 14; pub const SOF_TXTIME_DEADLINE_MODE: u32 = 1 << 0; pub const SOF_TXTIME_REPORT_ERRORS: u32 = 1 << 1;