[IA64] print kernel release in OOPS to make kerneloops.org happy

The ia64 oops message doesn't include the kernel version, which
makes it hard to automatically categorize oops messages scraped
from mailing lists and bug databases.

Signed-off-by: Tony Luck <tony.luck@intel.com>

+4 -2
+4 -2
arch/ia64/kernel/process.c
··· 27 27 #include <linux/interrupt.h> 28 28 #include <linux/delay.h> 29 29 #include <linux/kdebug.h> 30 + #include <linux/utsname.h> 30 31 31 32 #include <asm/cpu.h> 32 33 #include <asm/delay.h> ··· 108 107 print_modules(); 109 108 printk("\nPid: %d, CPU %d, comm: %20s\n", task_pid_nr(current), 110 109 smp_processor_id(), current->comm); 111 - printk("psr : %016lx ifs : %016lx ip : [<%016lx>] %s\n", 112 - regs->cr_ipsr, regs->cr_ifs, ip, print_tainted()); 110 + printk("psr : %016lx ifs : %016lx ip : [<%016lx>] %s (%s)\n", 111 + regs->cr_ipsr, regs->cr_ifs, ip, print_tainted(), 112 + init_utsname()->release); 113 113 print_symbol("ip is at %s\n", ip); 114 114 printk("unat: %016lx pfs : %016lx rsc : %016lx\n", 115 115 regs->ar_unat, regs->ar_pfs, regs->ar_rsc);