diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-02-06 13:07:47 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-02-06 13:07:47 -0800 |
| commit | 3dc58c9ce1c5802fec680cb8e95962f1430d5771 (patch) | |
| tree | abf2ef84eae8e08b2e9828fa7f39319ab13a3256 /include/linux | |
| parent | bab849a908496a593af61a9832eea26f1ec3e279 (diff) | |
| parent | ae9fd76c111bb4a5293c2831a1ad373605251dd6 (diff) | |
Merge tag 'mm-hotfixes-stable-2026-02-06-12-37' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Pull hotfixes from Andrew Morton:
"A couple of late-breaking MM fixes. One against a new-in-this-cycle
patch and the other addresses a locking issue which has been there for
over a year"
* tag 'mm-hotfixes-stable-2026-02-06-12-37' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm:
mm/memory-failure: reject unsupported non-folio compound page
procfs: avoid fetching build ID while holding VMA lock
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/buildid.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/buildid.h b/include/linux/buildid.h index 831c1b4b626c..7acc06b22fb7 100644 --- a/include/linux/buildid.h +++ b/include/linux/buildid.h @@ -7,7 +7,10 @@ #define BUILD_ID_SIZE_MAX 20 struct vm_area_struct; +struct file; + int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id, __u32 *size); +int build_id_parse_file(struct file *file, unsigned char *build_id, __u32 *size); int build_id_parse_nofault(struct vm_area_struct *vma, unsigned char *build_id, __u32 *size); int build_id_parse_buf(const void *buf, unsigned char *build_id, u32 buf_size); |
