diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 17:45:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 17:45:36 +0000 |
commit | 429d3efd5669e129a6168d62edb6832e36b7a2a0 (patch) | |
tree | 14b99403f823ded018ba76aa450e8687247796b8 /debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch | |
parent | Merging upstream version 5.10.216. (diff) | |
download | linux-429d3efd5669e129a6168d62edb6832e36b7a2a0.tar.xz linux-429d3efd5669e129a6168d62edb6832e36b7a2a0.zip |
Adding debian version 5.10.216-1.debian/5.10.216-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch')
-rw-r--r-- | debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch b/debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch index 723dd45e7..6ccdfc1b7 100644 --- a/debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch +++ b/debian/patches-rt/0045-highmem-High-implementation-details-and-document-API.patch @@ -1,8 +1,8 @@ -From e9f16e3d48ba9b1d37ae050de3e84e147133b84c Mon Sep 17 00:00:00 2001 +From ec6851b3e03ba777e3527ccb486213f068873699 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Tue, 3 Nov 2020 10:27:34 +0100 Subject: [PATCH 045/323] highmem: High implementation details and document API -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.204-rt100.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.215-rt107.tar.xz Move the gory details of kmap & al into a private header and only document the interfaces which are usable by drivers. @@ -18,7 +18,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> diff --git a/include/linux/highmem-internal.h b/include/linux/highmem-internal.h new file mode 100644 -index 000000000000..6ceed907b14e +index 0000000000000..6ceed907b14e2 --- /dev/null +++ b/include/linux/highmem-internal.h @@ -0,0 +1,174 @@ @@ -197,7 +197,7 @@ index 000000000000..6ceed907b14e + +#endif diff --git a/include/linux/highmem.h b/include/linux/highmem.h -index e632774cce87..5c888525b4c5 100644 +index e632774cce872..5c888525b4c58 100644 --- a/include/linux/highmem.h +++ b/include/linux/highmem.h @@ -11,199 +11,125 @@ @@ -497,7 +497,7 @@ index e632774cce87..5c888525b4c5 100644 /* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */ #ifndef clear_user_highpage diff --git a/mm/highmem.c b/mm/highmem.c -index 499dfafd36b7..54bd233846c9 100644 +index 499dfafd36b79..54bd233846c90 100644 --- a/mm/highmem.c +++ b/mm/highmem.c @@ -104,7 +104,7 @@ static inline wait_queue_head_t *get_pkmap_wait_queue_head(unsigned int color) @@ -540,5 +540,5 @@ index 499dfafd36b7..54bd233846c9 100644 lock_kmap(); flush_all_zero_pkmaps(); -- -2.43.0 +2.44.0 |