diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2024-07-18 10:58:24 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2024-07-18 10:58:24 +0200 |
commit | e76966a10a7754f8d716cc17d752e43a474d5c94 (patch) | |
tree | 129aa1b4056b6b567f2189c21b839266fb3ca02c /SOURCES/0001-ntsync.patch | |
parent | 82bbf281341ef6fdc89bf3cd4b8f9e49884deccd (diff) | |
download | kernel-fsync-e76966a10a7754f8d716cc17d752e43a474d5c94.tar.gz kernel-fsync-e76966a10a7754f8d716cc17d752e43a474d5c94.zip |
kernel 6.9.9 updated patchset
Diffstat (limited to 'SOURCES/0001-ntsync.patch')
-rw-r--r-- | SOURCES/0001-ntsync.patch | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/SOURCES/0001-ntsync.patch b/SOURCES/0001-ntsync.patch index 4f3d773..00a3538 100644 --- a/SOURCES/0001-ntsync.patch +++ b/SOURCES/0001-ntsync.patch @@ -1,6 +1,6 @@ -From 3aa16b2e2770401eaac82fcd8f279ee3d0ab409c Mon Sep 17 00:00:00 2001 +From 0f079f29cb143deb96685a5d7e5c40ee3e709cf8 Mon Sep 17 00:00:00 2001 From: Peter Jung <admin@ptr1337.dev> -Date: Thu, 27 Jun 2024 16:53:18 +0200 +Date: Fri, 5 Jul 2024 10:32:47 +0200 Subject: [PATCH 08/10] ntsync Signed-off-by: Peter Jung <admin@ptr1337.dev> @@ -28,7 +28,7 @@ Signed-off-by: Peter Jung <admin@ptr1337.dev> create mode 100644 tools/testing/selftests/drivers/ntsync/ntsync.c diff --git a/Documentation/userspace-api/index.rst b/Documentation/userspace-api/index.rst -index afecfe3cc4a86..d5745a500fa7b 100644 +index afecfe3cc4a8..d5745a500fa7 100644 --- a/Documentation/userspace-api/index.rst +++ b/Documentation/userspace-api/index.rst @@ -62,6 +62,7 @@ Everything else @@ -40,7 +40,7 @@ index afecfe3cc4a86..d5745a500fa7b 100644 .. only:: subproject and html diff --git a/Documentation/userspace-api/ioctl/ioctl-number.rst b/Documentation/userspace-api/ioctl/ioctl-number.rst -index c472423412bf2..a141e8e65c5d3 100644 +index c472423412bf..a141e8e65c5d 100644 --- a/Documentation/userspace-api/ioctl/ioctl-number.rst +++ b/Documentation/userspace-api/ioctl/ioctl-number.rst @@ -174,6 +174,8 @@ Code Seq# Include File Comments @@ -54,7 +54,7 @@ index c472423412bf2..a141e8e65c5d3 100644 'P' 60-6F sound/sscape_ioctl.h conflict! diff --git a/Documentation/userspace-api/ntsync.rst b/Documentation/userspace-api/ntsync.rst new file mode 100644 -index 0000000000000..767844637a7df +index 000000000000..767844637a7d --- /dev/null +++ b/Documentation/userspace-api/ntsync.rst @@ -0,0 +1,398 @@ @@ -457,7 +457,7 @@ index 0000000000000..767844637a7df + ``objs`` and in ``alert``. If this is attempted, the function fails + with ``EINVAL``. diff --git a/MAINTAINERS b/MAINTAINERS -index 3121709d99e3b..baa28e4151aa6 100644 +index 3121709d99e3..baa28e4151aa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -15720,6 +15720,15 @@ T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git @@ -477,7 +477,7 @@ index 3121709d99e3b..baa28e4151aa6 100644 M: Finn Thain <fthain@linux-m68k.org> L: linux-m68k@lists.linux-m68k.org diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig -index 4fb291f0bf7c8..801ed229ed7dc 100644 +index 4fb291f0bf7c..801ed229ed7d 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -506,6 +506,17 @@ config OPEN_DICE @@ -499,7 +499,7 @@ index 4fb291f0bf7c8..801ed229ed7dc 100644 tristate "Guest vCPU stall detector" depends on OF && HAS_IOMEM diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile -index ea6ea5bbbc9c6..153a3f4837e8c 100644 +index ea6ea5bbbc9c..153a3f4837e8 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -59,6 +59,7 @@ obj-$(CONFIG_PVPANIC) += pvpanic/ @@ -512,7 +512,7 @@ index ea6ea5bbbc9c6..153a3f4837e8c 100644 obj-$(CONFIG_GP_PCI1XXXX) += mchp_pci1xxxx/ diff --git a/drivers/misc/ntsync.c b/drivers/misc/ntsync.c new file mode 100644 -index 0000000000000..87a24798a5c7b +index 000000000000..87a24798a5c7 --- /dev/null +++ b/drivers/misc/ntsync.c @@ -0,0 +1,1232 @@ @@ -1750,7 +1750,7 @@ index 0000000000000..87a24798a5c7b +MODULE_LICENSE("GPL"); diff --git a/include/uapi/linux/ntsync.h b/include/uapi/linux/ntsync.h new file mode 100644 -index 0000000000000..4a8095a3fc34c +index 000000000000..4a8095a3fc34 --- /dev/null +++ b/include/uapi/linux/ntsync.h @@ -0,0 +1,62 @@ @@ -1817,7 +1817,7 @@ index 0000000000000..4a8095a3fc34c + +#endif diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile -index e1504833654db..6f95206325e1f 100644 +index e1504833654d..6f95206325e1 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -16,6 +16,7 @@ TARGETS += damon @@ -1830,14 +1830,14 @@ index e1504833654db..6f95206325e1f 100644 TARGETS += drivers/net/team diff --git a/tools/testing/selftests/drivers/ntsync/.gitignore b/tools/testing/selftests/drivers/ntsync/.gitignore new file mode 100644 -index 0000000000000..848573a3d3eaf +index 000000000000..848573a3d3ea --- /dev/null +++ b/tools/testing/selftests/drivers/ntsync/.gitignore @@ -0,0 +1 @@ +ntsync diff --git a/tools/testing/selftests/drivers/ntsync/Makefile b/tools/testing/selftests/drivers/ntsync/Makefile new file mode 100644 -index 0000000000000..dbf2b055c0b28 +index 000000000000..dbf2b055c0b2 --- /dev/null +++ b/tools/testing/selftests/drivers/ntsync/Makefile @@ -0,0 +1,7 @@ @@ -1850,14 +1850,14 @@ index 0000000000000..dbf2b055c0b28 +include ../../lib.mk diff --git a/tools/testing/selftests/drivers/ntsync/config b/tools/testing/selftests/drivers/ntsync/config new file mode 100644 -index 0000000000000..60539c826d062 +index 000000000000..60539c826d06 --- /dev/null +++ b/tools/testing/selftests/drivers/ntsync/config @@ -0,0 +1 @@ +CONFIG_WINESYNC=y diff --git a/tools/testing/selftests/drivers/ntsync/ntsync.c b/tools/testing/selftests/drivers/ntsync/ntsync.c new file mode 100644 -index 0000000000000..5fa2c9a0768c0 +index 000000000000..5fa2c9a0768c --- /dev/null +++ b/tools/testing/selftests/drivers/ntsync/ntsync.c @@ -0,0 +1,1407 @@ |