diff --git a/src/arch/aarch64.rs b/src/arch/aarch64.rs index 691ff02..d0eab68 100644 --- a/src/arch/aarch64.rs +++ b/src/arch/aarch64.rs @@ -694,6 +694,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/arm.rs b/src/arch/arm.rs index 93133ca..5ebae32 100644 --- a/src/arch/arm.rs +++ b/src/arch/arm.rs @@ -848,6 +848,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/loongarch64.rs b/src/arch/loongarch64.rs index fc9ceb1..a775401 100644 --- a/src/arch/loongarch64.rs +++ b/src/arch/loongarch64.rs @@ -694,6 +694,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/mips.rs b/src/arch/mips.rs index a98a8be..0223064 100644 --- a/src/arch/mips.rs +++ b/src/arch/mips.rs @@ -890,6 +890,8 @@ syscall_enum! { file_getattr = 4468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 4469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 4470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/mips64.rs b/src/arch/mips64.rs index ea8617c..709ccfd 100644 --- a/src/arch/mips64.rs +++ b/src/arch/mips64.rs @@ -748,6 +748,8 @@ syscall_enum! { file_getattr = 5468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 5469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 5470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/powerpc.rs b/src/arch/powerpc.rs index 096a244..c0ec9c5 100644 --- a/src/arch/powerpc.rs +++ b/src/arch/powerpc.rs @@ -904,6 +904,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/powerpc64.rs b/src/arch/powerpc64.rs index d038e6b..623eeb6 100644 --- a/src/arch/powerpc64.rs +++ b/src/arch/powerpc64.rs @@ -848,6 +848,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/riscv32.rs b/src/arch/riscv32.rs index d282d00..add827e 100644 --- a/src/arch/riscv32.rs +++ b/src/arch/riscv32.rs @@ -640,6 +640,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/riscv64.rs b/src/arch/riscv64.rs index b3ec589..40b6257 100644 --- a/src/arch/riscv64.rs +++ b/src/arch/riscv64.rs @@ -656,6 +656,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/s390x.rs b/src/arch/s390x.rs index e21ceda..c141f9b 100644 --- a/src/arch/s390x.rs +++ b/src/arch/s390x.rs @@ -780,6 +780,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/sparc.rs b/src/arch/sparc.rs index daa07c3..6203540 100644 --- a/src/arch/sparc.rs +++ b/src/arch/sparc.rs @@ -880,6 +880,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/sparc64.rs b/src/arch/sparc64.rs index 23f9d86..b01856e 100644 --- a/src/arch/sparc64.rs +++ b/src/arch/sparc64.rs @@ -806,6 +806,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/x86.rs b/src/arch/x86.rs index 7a1f0e7..7ff1f99 100644 --- a/src/arch/x86.rs +++ b/src/arch/x86.rs @@ -922,6 +922,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/src/arch/x86_64.rs b/src/arch/x86_64.rs index d786bbf..8fd3be1 100644 --- a/src/arch/x86_64.rs +++ b/src/arch/x86_64.rs @@ -770,6 +770,8 @@ syscall_enum! { file_getattr = 468, /// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall. file_setattr = 469, + /// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall. + listns = 470, } - LAST: file_setattr; + LAST: listns; } diff --git a/syscalls-gen/src/main.rs b/syscalls-gen/src/main.rs index 09d7c1c..b713ae7 100644 --- a/syscalls-gen/src/main.rs +++ b/syscalls-gen/src/main.rs @@ -17,7 +17,7 @@ mod tables; static LINUX_REPO: &str = "https://raw.githubusercontent.com/torvalds/linux"; /// Linux version to pull the syscall tables from. -static LINUX_VERSION: &str = "v6.18"; +static LINUX_VERSION: &str = "v6.19"; lazy_static! { /// List of syscall tables for each architecture.