The patch titled Subject: arch/sh/kernel/traps_64.c: use sign_extend64() for sign extension has been added to the -mm tree. Its filename is arch-sh-use-sign_extend64-for-sign-extension.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/arch-sh-use-sign_extend64-for-sign-extension.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/arch-sh-use-sign_extend64-for-sign-extension.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Martin Kepplinger <martink@xxxxxxxxx> Subject: arch/sh/kernel/traps_64.c: use sign_extend64() for sign extension Signed-off-by: Martin Kepplinger <martin.kepplinger@xxxxxxxxxxxxxxxxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: George Spelvin <linux@xxxxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Maxime Coquelin <maxime.coquelin@xxxxxx> Cc: Denys Vlasenko <dvlasenk@xxxxxxxxxx> Cc: Yury Norov <yury.norov@xxxxxxxxx> Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/sh/kernel/traps_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/sh/kernel/traps_64.c~arch-sh-use-sign_extend64-for-sign-extension arch/sh/kernel/traps_64.c --- a/arch/sh/kernel/traps_64.c~arch-sh-use-sign_extend64-for-sign-extension +++ a/arch/sh/kernel/traps_64.c @@ -101,7 +101,7 @@ static int generate_and_check_address(st if (displacement_not_indexed) { __s64 displacement; displacement = (opcode >> 10) & 0x3ff; - displacement = ((displacement << 54) >> 54); /* sign extend */ + displacement = sign_extend64(displacement, 9); addr = (__u64)((__s64)base_address + (displacement << width_shift)); } else { __u64 offset; _ Patches currently in -mm which might be from martink@xxxxxxxxx are bitopsh-improve-sign_extend32s-documentation.patch bitopsh-add-sign_extend64.patch arch-sh-use-sign_extend64-for-sign-extension.patch arch-sh-use-sign_extend64-for-sign-extension-2.patch arch-x86-use-sign_extend64-for-sign-extension.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html