Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kbuild-fixes-v6.5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull Kbuild fixes from Masahiro Yamada:

- Clear errno before calling getline()

- Fix a modpost warning for ARCH=alpha

* tag 'kbuild-fixes-v6.5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
alpha: remove __init annotation from exported page_is_ram()
scripts/kallsyms: Fix build failure by setting errno before calling getline()

+2 -2
+1 -2
arch/alpha/kernel/setup.c
··· 385 385 #endif /* CONFIG_BLK_DEV_INITRD */ 386 386 } 387 387 388 - int __init 389 - page_is_ram(unsigned long pfn) 388 + int page_is_ram(unsigned long pfn) 390 389 { 391 390 struct memclust_struct * cluster; 392 391 struct memdesc_struct * memdesc;
+1
scripts/kallsyms.c
··· 129 129 ssize_t readlen; 130 130 struct sym_entry *sym; 131 131 132 + errno = 0; 132 133 readlen = getline(buf, buf_len, in); 133 134 if (readlen < 0) { 134 135 if (errno) {