Description of problem: ia32el doesn't use kernel parameters related to core file when ia32el creates a elf32 core file. Version-Release number of selected component (if applicable): ia32el-1.1-13.ia64.rpm How reproducible: always Steps to Reproduce: 1. set kernel parameters # echo /tmp/mycore-%e-%p-%t > /proc/sys/kernel/core_pattern # echo 0 > /proc/sys/kernel/core_uses_pid # # cat /proc/sys/kernel/core_pattern /tmp/mycore-%e-%p-%t # cat /proc/sys/kernel/core_uses_pid 0 2. compile test program <elf64> compile on ia64 machine # cat test.c main() { int *p, *q; p=0; *q=*p; } # cc -o test_ia64 test.c <elf32> compile on i32 machine # cc -o test_ia32 test.c 3. run test program # pwd /var/tmp/work # ./test_ia64 Segmentation fault (core dumped) # ./test_ia32 Segmentation fault (core dumped) # ls /tmp mycore-test_ia64-17731-1104145866 # ls /var/tmp/work core.17732 Actual results: # ls /var/tmp/work core.17732 Expected results: # ls /tmp mycore-test_ia32-17732-xxxxxxxxxxx Additional info:
*** This bug has been marked as a duplicate of 143769 ***