Skip to content

Commit fbef835

Browse files
authored
Linux v6.19: add listns syscall (#60)
1 parent 692bcf0 commit fbef835

File tree

15 files changed

+43
-15
lines changed

15 files changed

+43
-15
lines changed

src/arch/aarch64.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,8 @@ syscall_enum! {
694694
file_getattr = 468,
695695
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
696696
file_setattr = 469,
697+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
698+
listns = 470,
697699
}
698-
LAST: file_setattr;
700+
LAST: listns;
699701
}

src/arch/arm.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,8 @@ syscall_enum! {
848848
file_getattr = 468,
849849
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
850850
file_setattr = 469,
851+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
852+
listns = 470,
851853
}
852-
LAST: file_setattr;
854+
LAST: listns;
853855
}

src/arch/loongarch64.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,8 @@ syscall_enum! {
694694
file_getattr = 468,
695695
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
696696
file_setattr = 469,
697+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
698+
listns = 470,
697699
}
698-
LAST: file_setattr;
700+
LAST: listns;
699701
}

src/arch/mips.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,6 +890,8 @@ syscall_enum! {
890890
file_getattr = 4468,
891891
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
892892
file_setattr = 4469,
893+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
894+
listns = 4470,
893895
}
894-
LAST: file_setattr;
896+
LAST: listns;
895897
}

src/arch/mips64.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,8 @@ syscall_enum! {
748748
file_getattr = 5468,
749749
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
750750
file_setattr = 5469,
751+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
752+
listns = 5470,
751753
}
752-
LAST: file_setattr;
754+
LAST: listns;
753755
}

src/arch/powerpc.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,6 +904,8 @@ syscall_enum! {
904904
file_getattr = 468,
905905
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
906906
file_setattr = 469,
907+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
908+
listns = 470,
907909
}
908-
LAST: file_setattr;
910+
LAST: listns;
909911
}

src/arch/powerpc64.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,8 @@ syscall_enum! {
848848
file_getattr = 468,
849849
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
850850
file_setattr = 469,
851+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
852+
listns = 470,
851853
}
852-
LAST: file_setattr;
854+
LAST: listns;
853855
}

src/arch/riscv32.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,8 @@ syscall_enum! {
640640
file_getattr = 468,
641641
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
642642
file_setattr = 469,
643+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
644+
listns = 470,
643645
}
644-
LAST: file_setattr;
646+
LAST: listns;
645647
}

src/arch/riscv64.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,8 @@ syscall_enum! {
656656
file_getattr = 468,
657657
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
658658
file_setattr = 469,
659+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
660+
listns = 470,
659661
}
660-
LAST: file_setattr;
662+
LAST: listns;
661663
}

src/arch/s390x.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,8 @@ syscall_enum! {
780780
file_getattr = 468,
781781
/// See [file_setattr(2)](https://man7.org/linux/man-pages/man2/file_setattr.2.html) for more info on this syscall.
782782
file_setattr = 469,
783+
/// See [listns(2)](https://man7.org/linux/man-pages/man2/listns.2.html) for more info on this syscall.
784+
listns = 470,
783785
}
784-
LAST: file_setattr;
786+
LAST: listns;
785787
}

0 commit comments

Comments
 (0)