diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-04-03 13:28:54 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-04-03 13:50:54 +0200 |
| commit | 898831fcd07fd611e33af755d028b5137981aae4 (patch) | |
| tree | f8255927e6058b73e916284b0011924aa5863606 | |
| parent | 888ff08c4a1b7a937b0ebe65ddcb275b05aea4c1 (diff) | |
pkg/subsystem: fix nilfs syscalls
Adjust the rules so that syz_mount_image$nilfs2 begins to point to
nilfs.
| -rw-r--r-- | pkg/subsystem/linux/rules.go | 2 | ||||
| -rw-r--r-- | pkg/subsystem/lists/linux.go | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/pkg/subsystem/linux/rules.go b/pkg/subsystem/linux/rules.go index 645f11cbb..013f99c55 100644 --- a/pkg/subsystem/linux/rules.go +++ b/pkg/subsystem/linux/rules.go @@ -43,7 +43,7 @@ var ( "jfs": {"syz_mount_image$jfs"}, "kvm": {"syz_kvm_setup_cpu"}, "minix": {"syz_mount_image$minix"}, - "nilfs2": {"syz_mount_image$nilfs2"}, + "nilfs": {"syz_mount_image$nilfs2"}, "ntfs": {"syz_mount_image$ntfs"}, "ntfs3": {"syz_mount_image$ntfs3"}, "ocfs2": {"syz_mount_image$ocfs2"}, diff --git a/pkg/subsystem/lists/linux.go b/pkg/subsystem/lists/linux.go index 31971da6e..37c6aa46f 100644 --- a/pkg/subsystem/lists/linux.go +++ b/pkg/subsystem/lists/linux.go @@ -3203,6 +3203,7 @@ func subsystems_linux() []*Subsystem { nilfs = Subsystem{ Name: "nilfs", + Syscalls: []string{"syz_mount_image$nilfs2"}, Lists: []string{"linux-nilfs@vger.kernel.org"}, Maintainers: []string{"konishi.ryusuke@gmail.com"}, Parents: []*Subsystem{&fs}, |
