Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7dfee3f authored by Jun Sun's avatar Jun Sun Committed by Greg Ungerer
Browse files

uclinux: error message when FLAT reloc symbol is invalid, v2



This patch fixes a cosmetic error in printk. Text segment and data/bss
segment are allocated from two different areas. It is not meaningful to
give the diff between them in the error reporting messages.

Signed-off-by: default avatarJun Sun <jsun@junsun.net>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent 05ce7bfe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -355,7 +355,7 @@ calc_reloc(unsigned long r, struct lib_info *p, int curid, int internalp)

	if (!flat_reloc_valid(r, start_brk - start_data + text_len)) {
		printk("BINFMT_FLAT: reloc outside program 0x%x (0 - 0x%x/0x%x)",
		       (int) r,(int)(start_brk-start_code),(int)text_len);
		       (int) r,(int)(start_brk-start_data+text_len),(int)text_len);
		goto failed;
	}