Re: [LKP] [ipc] 61224adcd2: general_protection_fault:#[##]

From: Li Zhijian
Date: Tue Sep 18 2018 - 03:54:20 EST



On 9/18/2018 3:23 PM, David Howells wrote:
Still not sure what I'm meant to be seeing. Note that there are a number of
"Not found" and "No such file or directory" errors appearing.

I've attached the console log for you.

David
---
warthog>sudo bin/lkp qemu -k /data/fs/linux-next/build2/arch/x86/boot/bzImage job-script
make: Entering directory '/data/lkp-tests/bin/event'
gcc -c -o wakeup.o wakeup.c
gcc -static -o wakeup wakeup.o
rm -f wakeup.o
strip wakeup
make: Leaving directory '/data/lkp-tests/bin/event'
cpio: Cannot open/home/dhowells/.lkp/cache/lkp-x86_64.cpio: No such file or directory
cpio: Cannot open/home/dhowells/.lkp/cache/lkp-x86_64.cpio: No such file or directory
cpio: Cannot open/home/dhowells/.lkp/cache/lkp-x86_64.cpio: No such file or directory
gzip:/home/dhowells/.lkp/cache/lkp-x86_64.cpio: No such file or directory
mv: cannot stat '/home/dhowells/.lkp/cache/lkp-x86_64.cpio.gz': No such file or directory
mv: cannot stat '/home/dhowells/.lkp/cache/lkp-x86_64.cgz': No such file or directory

this is not expected.
could you list/home/dhowells/.lkp/cache

looks something wrong at below function
lizhijian@haswell-OptiPlex-9020:~/lkp-tests$ vim lkp-exec/qemu +230
230 create_lkp_src_initrd()
231 {
232 if [[ "$kconfig" =~ ^(i386|x86_64)- ]]; then
233 local arch=${kconfig%%-*}
234 else
235 local arch=$(arch)
236 fi
237
238 if [ -d $LKP_SRC/.git ]; then
239 local head_commit=$(cd $LKP_SRC && git rev-list -n1 HEAD)
240 local diff_id=$(cd $LKP_SRC && git diff | git patch-id | cut -f1 -d' ')
241 local src_sig=${head_commit:0:12}_${diff_id:0:12}
242 else
243 local src_sig=$(ls -lR $LKP_SRC|md5sum|cut -c1-12)
244 fi
245 lkp_initrd=$CACHE_DIR/lkp-$arch-$src_sig.cgz
246 [[ -f $lkp_initrd ]] || {
247 LKP_USER=$user \
248 $LKP_SRC/sbin/pack -f -a $arch lkp-src
249 mv $CACHE_DIR/lkp-$arch.cgz $lkp_initrd
250 }
251 }


Thanks