* review for 5.16.3-rc2
@ 2022-01-25 12:45 Jeffrin Jose T
2022-01-25 14:34 ` Greg KH
0 siblings, 1 reply; 9+ messages in thread
From: Jeffrin Jose T @ 2022-01-25 12:45 UTC (permalink / raw)
To: Greg KH, lkml; +Cc: stable
[-- Attachment #1: Type: text/plain, Size: 222 bytes --]
hello greg,
compile failed for 5.16.3-rc2 related.
a relevent file attached.
Tested-by : Jeffrin Jose T <jeffrin@rajagiritech.edu.in>
--
software engineer
rajagiri school of engineering and technology - autonomous
[-- Attachment #2: 5.16.3-rc2.txt --]
[-- Type: text/plain, Size: 1031 bytes --]
char * typetab; /* 24 8 */
/* size: 32, cachelines: 1, members: 4 */
/* sum members: 28, holes: 1, sum holes: 4 */
/* last cacheline: 32 bytes */
};
struct klp_modinfo {
Elf64_Ehdr hdr; /* 0 64 */
/* --- cacheline 1 boundary (64 bytes) --- */
Elf64_Shdr * sechdrs; /* 64 8 */
char * secstrings; /* 72 8 */
unsigned int symndx; /* 80 4 */
/* size: 88, cachelines: 2, members: 4 */
/* padding: 4 */
/* last cacheline: 24 bytes */
};
Segmentation fault
LD .tmp_vmlinux.kallsyms1
KSYMS .tmp_vmlinux.kallsyms1.S
AS .tmp_vmlinux.kallsyms1.S
LD .tmp_vmlinux.kallsyms2
KSYMS .tmp_vmlinux.kallsyms2.S
AS .tmp_vmlinux.kallsyms2.S
LD vmlinux
BTFIDS vmlinux
FAILED: load BTF from vmlinux: No such file or directory
make: *** [Makefile:1161: vmlinux] Error 255
make: *** Deleting file 'vmlinux'
$
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: review for 5.16.3-rc2 2022-01-25 12:45 review for 5.16.3-rc2 Jeffrin Jose T @ 2022-01-25 14:34 ` Greg KH 2022-01-25 16:19 ` Jeffrin Thalakkottoor 0 siblings, 1 reply; 9+ messages in thread From: Greg KH @ 2022-01-25 14:34 UTC (permalink / raw) To: Jeffrin Jose T; +Cc: lkml, stable On Tue, Jan 25, 2022 at 06:15:46PM +0530, Jeffrin Jose T wrote: > hello greg, > > compile failed for 5.16.3-rc2 related. > a relevent file attached. > > Tested-by : Jeffrin Jose T <jeffrin@rajagiritech.edu.in> But it failed for you, how did you test it? > > > -- > software engineer > rajagiri school of engineering and technology - autonomous > > > char * typetab; /* 24 8 */ > > /* size: 32, cachelines: 1, members: 4 */ > /* sum members: 28, holes: 1, sum holes: 4 */ > /* last cacheline: 32 bytes */ > }; > struct klp_modinfo { > Elf64_Ehdr hdr; /* 0 64 */ > /* --- cacheline 1 boundary (64 bytes) --- */ > Elf64_Shdr * sechdrs; /* 64 8 */ > char * secstrings; /* 72 8 */ > unsigned int symndx; /* 80 4 */ > > /* size: 88, cachelines: 2, members: 4 */ > /* padding: 4 */ > /* last cacheline: 24 bytes */ > }; > Segmentation fault What "faulted"? Look higher up in the log please. thanks, greg k-h ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-25 14:34 ` Greg KH @ 2022-01-25 16:19 ` Jeffrin Thalakkottoor 2022-01-25 16:27 ` Greg KH 0 siblings, 1 reply; 9+ messages in thread From: Jeffrin Thalakkottoor @ 2022-01-25 16:19 UTC (permalink / raw) To: Greg KH; +Cc: lkml, stable On Tue, Jan 25, 2022 at 8:04 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > On Tue, Jan 25, 2022 at 06:15:46PM +0530, Jeffrin Jose T wrote: > > hello greg, > > > > compile failed for 5.16.3-rc2 related. > > a relevent file attached. > > > > Tested-by : Jeffrin Jose T <jeffrin@rajagiritech.edu.in> > > But it failed for you, how did you test it? i compiled 5.16.3-rc2 related to "make localmodconfig" and "make -j4" > > > > > > > > char * typetab; /* 24 8 */ > > > > /* size: 32, cachelines: 1, members: 4 */ > > /* sum members: 28, holes: 1, sum holes: 4 */ > > /* last cacheline: 32 bytes */ > > }; > > struct klp_modinfo { > > Elf64_Ehdr hdr; /* 0 64 */ > > /* --- cacheline 1 boundary (64 bytes) --- */ > > Elf64_Shdr * sechdrs; /* 64 8 */ > > char * secstrings; /* 72 8 */ > > unsigned int symndx; /* 80 4 */ > > > > /* size: 88, cachelines: 2, members: 4 */ > > /* padding: 4 */ > > /* last cacheline: 24 bytes */ > > }; > > Segmentation fault > > What "faulted"? Look higher up in the log please. a top view... CALL scripts/atomic/check-atomics.sh CALL scripts/checksyscalls.sh CHK include/generated/compile.h GEN .version CHK include/generated/compile.h UPD include/generated/compile.h CC init/version.o AR init/built-in.a LD vmlinux.o MODPOST vmlinux.symvers MODINFO modules.builtin.modinfo GEN modules.builtin LD .tmp_vmlinux.btf BTF .btf.vmlinux.bin.o struct list_head { struct list_head * next; /* 0 8 */ struct list_head * prev; /* 8 8 */ /* size: 16, cachelines: 1, members: 2 */ /* last cacheline: 16 bytes */ }; struct hlist_head { struct hlist_node * first; /* 0 8 */ /* size: 8, cachelines: 1, members: 1 */ /* last cacheline: 8 bytes */ }; struct hlist_node { struct hlist_node * next; /* 0 8 */ struct hlist_node * * pprev; /* 8 8 */ /* size: 16, cachelines: 1, members: 2 */ /* last cacheline: 16 bytes */ }; struct callback_head { struct callback_head * next; /* 0 8 */ void (*func)(struct callback_head *); /* 8 8 */ . . . . . . $ -- software engineer rajagiri school of engineering and technology ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-25 16:19 ` Jeffrin Thalakkottoor @ 2022-01-25 16:27 ` Greg KH 2022-01-25 17:02 ` Jeffrin Thalakkottoor 0 siblings, 1 reply; 9+ messages in thread From: Greg KH @ 2022-01-25 16:27 UTC (permalink / raw) To: Jeffrin Thalakkottoor; +Cc: lkml, stable On Tue, Jan 25, 2022 at 09:49:00PM +0530, Jeffrin Thalakkottoor wrote: > On Tue, Jan 25, 2022 at 8:04 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > On Tue, Jan 25, 2022 at 06:15:46PM +0530, Jeffrin Jose T wrote: > > > hello greg, > > > > > > compile failed for 5.16.3-rc2 related. > > > a relevent file attached. > > > > > > Tested-by : Jeffrin Jose T <jeffrin@rajagiritech.edu.in> > > > > But it failed for you, how did you test it? > > i compiled 5.16.3-rc2 related to "make localmodconfig" and "make -j4" So it somehow failed? > > > > > > > > > > > > > char * typetab; /* 24 8 */ > > > > > > /* size: 32, cachelines: 1, members: 4 */ > > > /* sum members: 28, holes: 1, sum holes: 4 */ > > > /* last cacheline: 32 bytes */ > > > }; > > > struct klp_modinfo { > > > Elf64_Ehdr hdr; /* 0 64 */ > > > /* --- cacheline 1 boundary (64 bytes) --- */ > > > Elf64_Shdr * sechdrs; /* 64 8 */ > > > char * secstrings; /* 72 8 */ > > > unsigned int symndx; /* 80 4 */ > > > > > > /* size: 88, cachelines: 2, members: 4 */ > > > /* padding: 4 */ > > > /* last cacheline: 24 bytes */ > > > }; > > > Segmentation fault > > > > What "faulted"? Look higher up in the log please. > > a top view... > > CALL scripts/atomic/check-atomics.sh > CALL scripts/checksyscalls.sh > CHK include/generated/compile.h > GEN .version > CHK include/generated/compile.h > UPD include/generated/compile.h > CC init/version.o > AR init/built-in.a > LD vmlinux.o > MODPOST vmlinux.symvers > MODINFO modules.builtin.modinfo > GEN modules.builtin > LD .tmp_vmlinux.btf > BTF .btf.vmlinux.bin.o > struct list_head { > struct list_head * next; /* 0 8 */ > struct list_head * prev; /* 8 8 */ > > /* size: 16, cachelines: 1, members: 2 */ > /* last cacheline: 16 bytes */ > }; > struct hlist_head { > struct hlist_node * first; /* 0 8 */ > > /* size: 8, cachelines: 1, members: 1 */ > /* last cacheline: 8 bytes */ > }; > struct hlist_node { > struct hlist_node * next; /* 0 8 */ > struct hlist_node * * pprev; /* 8 8 */ > > /* size: 16, cachelines: 1, members: 2 */ > /* last cacheline: 16 bytes */ > }; > struct callback_head { > struct callback_head * next; /* 0 8 */ > void (*func)(struct callback_head *); /* > 8 8 */ > . > . > . > . > . > . I do not know what is failing, there is no error message here. Does 5.16.2 build properly for you? thanks, greg k-h ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-25 16:27 ` Greg KH @ 2022-01-25 17:02 ` Jeffrin Thalakkottoor 2022-01-25 18:55 ` Jeffrin Thalakkottoor 2022-01-26 10:45 ` Salvatore Bonaccorso 0 siblings, 2 replies; 9+ messages in thread From: Jeffrin Thalakkottoor @ 2022-01-25 17:02 UTC (permalink / raw) To: Greg KH; +Cc: lkml, stable On Tue, Jan 25, 2022 at 9:57 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > On Tue, Jan 25, 2022 at 09:49:00PM +0530, Jeffrin Thalakkottoor wrote: > > On Tue, Jan 25, 2022 at 8:04 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > > > On Tue, Jan 25, 2022 at 06:15:46PM +0530, Jeffrin Jose T wrote: > > > > hello greg, > > > > > > > > compile failed for 5.16.3-rc2 related. > > > > a relevent file attached. > > > > > > > > Tested-by : Jeffrin Jose T <jeffrin@rajagiritech.edu.in> > > > > > > But it failed for you, how did you test it? > > > > i compiled 5.16.3-rc2 related to "make localmodconfig" and "make -j4" > > So it somehow failed? Yes i think so > > > > > > > > > > > > > > > > > > > char * typetab; /* 24 8 */ > > > > > > > > /* size: 32, cachelines: 1, members: 4 */ > > > > /* sum members: 28, holes: 1, sum holes: 4 */ > > > > /* last cacheline: 32 bytes */ > > > > }; > > > > struct klp_modinfo { > > > > Elf64_Ehdr hdr; /* 0 64 */ > > > > /* --- cacheline 1 boundary (64 bytes) --- */ > > > > Elf64_Shdr * sechdrs; /* 64 8 */ > > > > char * secstrings; /* 72 8 */ > > > > unsigned int symndx; /* 80 4 */ > > > > > > > > /* size: 88, cachelines: 2, members: 4 */ > > > > /* padding: 4 */ > > > > /* last cacheline: 24 bytes */ > > > > }; > > > > Segmentation fault > > > > > > What "faulted"? Look higher up in the log please. > > > > a top view... > > > > CALL scripts/atomic/check-atomics.sh > > CALL scripts/checksyscalls.sh > > CHK include/generated/compile.h > > GEN .version > > CHK include/generated/compile.h > > UPD include/generated/compile.h > > CC init/version.o > > AR init/built-in.a > > LD vmlinux.o > > MODPOST vmlinux.symvers > > MODINFO modules.builtin.modinfo > > GEN modules.builtin > > LD .tmp_vmlinux.btf > > BTF .btf.vmlinux.bin.o > > struct list_head { > > struct list_head * next; /* 0 8 */ > > struct list_head * prev; /* 8 8 */ > > > > /* size: 16, cachelines: 1, members: 2 */ > > /* last cacheline: 16 bytes */ > > }; > > struct hlist_head { > > struct hlist_node * first; /* 0 8 */ > > > > /* size: 8, cachelines: 1, members: 1 */ > > /* last cacheline: 8 bytes */ > > }; > > struct hlist_node { > > struct hlist_node * next; /* 0 8 */ > > struct hlist_node * * pprev; /* 8 8 */ > > > > /* size: 16, cachelines: 1, members: 2 */ > > /* last cacheline: 16 bytes */ > > }; > > struct callback_head { > > struct callback_head * next; /* 0 8 */ > > void (*func)(struct callback_head *); /* > > 8 8 */ > > . > > . > > . > > . > > . > > . > > I do not know what is failing, there is no error message here. Does > 5.16.2 build properly for you? stderr has captured the following... -------------x-----------------x--------------x--- FAILED: load BTF from vmlinux: No such file or directory make: *** [Makefile:1161: vmlinux] Error 255 make: *** Deleting file 'vmlinux' ------------x----------------x------------x-- 5.16.2-rc1 builds for me. Will the following link help... https://unix.stackexchange.com/questions/616392/failed-load-btf-from-vmlinux-unknown-error-2make-makefile1162-vmlinu -- software engineer rajagiri school of engineering and technology ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-25 17:02 ` Jeffrin Thalakkottoor @ 2022-01-25 18:55 ` Jeffrin Thalakkottoor 2022-01-26 10:45 ` Salvatore Bonaccorso 1 sibling, 0 replies; 9+ messages in thread From: Jeffrin Thalakkottoor @ 2022-01-25 18:55 UTC (permalink / raw) To: Greg KH; +Cc: lkml, stable a > > Does > > 5.16.2 build properly for you? anyway 5.16.2 does not build properly for me now. may be this build error issue started when i plugged in a usb transmitter for my new wireless keyboard and mouse. -- software engineer rajagiri school of engineering and technology ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-25 17:02 ` Jeffrin Thalakkottoor 2022-01-25 18:55 ` Jeffrin Thalakkottoor @ 2022-01-26 10:45 ` Salvatore Bonaccorso 2022-01-26 12:36 ` Jeffrin Thalakkottoor 1 sibling, 1 reply; 9+ messages in thread From: Salvatore Bonaccorso @ 2022-01-26 10:45 UTC (permalink / raw) To: Jeffrin Thalakkottoor; +Cc: Greg KH, lkml, stable Hi, On Tue, Jan 25, 2022 at 10:32:26PM +0530, Jeffrin Thalakkottoor wrote: > On Tue, Jan 25, 2022 at 9:57 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > On Tue, Jan 25, 2022 at 09:49:00PM +0530, Jeffrin Thalakkottoor wrote: > > > On Tue, Jan 25, 2022 at 8:04 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > > > > > On Tue, Jan 25, 2022 at 06:15:46PM +0530, Jeffrin Jose T wrote: > > > > > hello greg, > > > > > > > > > > compile failed for 5.16.3-rc2 related. > > > > > a relevent file attached. > > > > > > > > > > Tested-by : Jeffrin Jose T <jeffrin@rajagiritech.edu.in> > > > > > > > > But it failed for you, how did you test it? > > > > > > i compiled 5.16.3-rc2 related to "make localmodconfig" and "make -j4" > > > > So it somehow failed? > > Yes i think so > > > > > > > > > > > > > > > > > > > > > > > > > > char * typetab; /* 24 8 */ > > > > > > > > > > /* size: 32, cachelines: 1, members: 4 */ > > > > > /* sum members: 28, holes: 1, sum holes: 4 */ > > > > > /* last cacheline: 32 bytes */ > > > > > }; > > > > > struct klp_modinfo { > > > > > Elf64_Ehdr hdr; /* 0 64 */ > > > > > /* --- cacheline 1 boundary (64 bytes) --- */ > > > > > Elf64_Shdr * sechdrs; /* 64 8 */ > > > > > char * secstrings; /* 72 8 */ > > > > > unsigned int symndx; /* 80 4 */ > > > > > > > > > > /* size: 88, cachelines: 2, members: 4 */ > > > > > /* padding: 4 */ > > > > > /* last cacheline: 24 bytes */ > > > > > }; > > > > > Segmentation fault > > > > > > > > What "faulted"? Look higher up in the log please. > > > > > > a top view... > > > > > > CALL scripts/atomic/check-atomics.sh > > > CALL scripts/checksyscalls.sh > > > CHK include/generated/compile.h > > > GEN .version > > > CHK include/generated/compile.h > > > UPD include/generated/compile.h > > > CC init/version.o > > > AR init/built-in.a > > > LD vmlinux.o > > > MODPOST vmlinux.symvers > > > MODINFO modules.builtin.modinfo > > > GEN modules.builtin > > > LD .tmp_vmlinux.btf > > > BTF .btf.vmlinux.bin.o > > > struct list_head { > > > struct list_head * next; /* 0 8 */ > > > struct list_head * prev; /* 8 8 */ > > > > > > /* size: 16, cachelines: 1, members: 2 */ > > > /* last cacheline: 16 bytes */ > > > }; > > > struct hlist_head { > > > struct hlist_node * first; /* 0 8 */ > > > > > > /* size: 8, cachelines: 1, members: 1 */ > > > /* last cacheline: 8 bytes */ > > > }; > > > struct hlist_node { > > > struct hlist_node * next; /* 0 8 */ > > > struct hlist_node * * pprev; /* 8 8 */ > > > > > > /* size: 16, cachelines: 1, members: 2 */ > > > /* last cacheline: 16 bytes */ > > > }; > > > struct callback_head { > > > struct callback_head * next; /* 0 8 */ > > > void (*func)(struct callback_head *); /* > > > 8 8 */ > > > . > > > . > > > . > > > . > > > . > > > . > > > > I do not know what is failing, there is no error message here. Does > > 5.16.2 build properly for you? > > stderr has captured the following... > > > -------------x-----------------x--------------x--- > FAILED: load BTF from vmlinux: No such file or directory > make: *** [Makefile:1161: vmlinux] Error 255 > make: *** Deleting file 'vmlinux' > ------------x----------------x------------x-- > 5.16.2-rc1 builds for me. > > Will the following link help... > > https://unix.stackexchange.com/questions/616392/failed-load-btf-from-vmlinux-unknown-error-2make-makefile1162-vmlinu What version of pahole are you using? Are you using Debian downstream's 1.22-2? If so please check if it's just the same issue as reported in https://bugs.debian.org/1004311 Regards, Salvatore ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-26 10:45 ` Salvatore Bonaccorso @ 2022-01-26 12:36 ` Jeffrin Thalakkottoor 2022-01-26 14:37 ` Jeffrin Thalakkottoor 0 siblings, 1 reply; 9+ messages in thread From: Jeffrin Thalakkottoor @ 2022-01-26 12:36 UTC (permalink / raw) To: Salvatore Bonaccorso; +Cc: Greg KH, lkml, stable > What version of pahole are you using? Are you using Debian > downstream's 1.22-2? If so please check if it's just the same issue as > reported in https://bugs.debian.org/1004311 > > Regards, > Salvatore i was using 1.22-2. i think it is the debian issue as you pointed.anyway thanks -- software engineer rajagiri school of engineering and technology ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: review for 5.16.3-rc2 2022-01-26 12:36 ` Jeffrin Thalakkottoor @ 2022-01-26 14:37 ` Jeffrin Thalakkottoor 0 siblings, 0 replies; 9+ messages in thread From: Jeffrin Thalakkottoor @ 2022-01-26 14:37 UTC (permalink / raw) To: Salvatore Bonaccorso; +Cc: Greg KH, lkml, stable On Wed, Jan 26, 2022 at 6:06 PM Jeffrin Thalakkottoor <jeffrin@rajagiritech.edu.in> wrote: > > > What version of pahole are you using? Are you using Debian > > downstream's 1.22-2? If so please check if it's just the same issue as > > reported in https://bugs.debian.org/1004311 > > > > Regards, > > Salvatore > i was using 1.22-2. > i think it is the debian issue as you pointed.anyway thanks > i downloaded pahole 1.23 from kernel.org and the problem is fixed i will test 5.16.3-rc2 and send another mail -- software engineer rajagiri school of engineering and technology ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-01-26 14:37 UTC | newest] Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2022-01-25 12:45 review for 5.16.3-rc2 Jeffrin Jose T 2022-01-25 14:34 ` Greg KH 2022-01-25 16:19 ` Jeffrin Thalakkottoor 2022-01-25 16:27 ` Greg KH 2022-01-25 17:02 ` Jeffrin Thalakkottoor 2022-01-25 18:55 ` Jeffrin Thalakkottoor 2022-01-26 10:45 ` Salvatore Bonaccorso 2022-01-26 12:36 ` Jeffrin Thalakkottoor 2022-01-26 14:37 ` Jeffrin Thalakkottoor
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
Powered by JetHome