From: Jesper Juhl Date: Wed, 11 Jan 2006 00:51:26 +0000 (+0100) Subject: missing printk loglevel and tiny tiny whitespace change in binfmt_elf() X-Git-Tag: accepted/tizen/common/20141203.182822~41011 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74da6cd06225da6971943bea6a33f4cb7f6b76a3;p=platform%2Fkernel%2Flinux-arm64.git missing printk loglevel and tiny tiny whitespace change in binfmt_elf() Patch adds a mising printk loglevel (I think KERN_WARNING is appropriate here) in fs/binfmt_elf.c, and while I was there I made some tiny tiny tiny adjustments to whitespacing in the neighborhood. Signed-off-by: Jesper Juhl Signed-off-by: Adrian Bunk --- diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index a4f6f57..f979ebb 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -1634,17 +1634,17 @@ static int elf_core_dump(long signr, struct pt_regs * regs, struct file * file) ELF_CORE_WRITE_EXTRA_DATA; #endif - if ((off_t) file->f_pos != offset) { + if ((off_t)file->f_pos != offset) { /* Sanity check */ - printk("elf_core_dump: file->f_pos (%ld) != offset (%ld)\n", - (off_t) file->f_pos, offset); + printk(KERN_WARNING "elf_core_dump: file->f_pos (%ld) != offset (%ld)\n", + (off_t)file->f_pos, offset); } end_coredump: set_fs(fs); cleanup: - while(!list_empty(&thread_list)) { + while (!list_empty(&thread_list)) { struct list_head *tmp = thread_list.next; list_del(tmp); kfree(list_entry(tmp, struct elf_thread_status, list));