The patch titled fs/binfmt_misc.c: use kernel's hex_to_bin() method has been added to the -mm tree. Its filename is fs-binfmt_miscc-use-kernels-hex_to_bin-method.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 *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: fs/binfmt_misc.c: use kernel's hex_to_bin() method From: Andy Shevchenko <andy.shevchenko@xxxxxxxxx> Signed-off-by: Andy Shevchenko <andy.shevchenko@xxxxxxxxx> Cc: Mimi Zohar <zohar@xxxxxxxxxx> Cc: Serge E. Hallyn <serge@xxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: James Morris <jmorris@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/binfmt_misc.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff -puN fs/binfmt_misc.c~fs-binfmt_miscc-use-kernels-hex_to_bin-method fs/binfmt_misc.c --- a/fs/binfmt_misc.c~fs-binfmt_miscc-use-kernels-hex_to_bin-method +++ a/fs/binfmt_misc.c @@ -28,6 +28,7 @@ #include <linux/mount.h> #include <linux/syscalls.h> #include <linux/fs.h> +#include <linux/kernel.h> #include <asm/uaccess.h> @@ -244,10 +245,8 @@ static int unquote(char *from) while ((c = *s++) != '\0') { if (c == '\\' && *s == 'x') { s++; - c = toupper(*s++); - *p = (c - (isdigit(c) ? '0' : 'A' - 10)) << 4; - c = toupper(*s++); - *p++ |= c - (isdigit(c) ? '0' : 'A' - 10); + *p = hex_to_bin(*s++) << 4; + *p++ |= hex_to_bin(*s++); continue; } *p++ = c; _ Patches currently in -mm which might be from andy.shevchenko@xxxxxxxxx are linux-next.patch lib-hexdumpc-make-hex2bin-return-the-updated-src-address.patch fs-binfmt_miscc-use-kernels-hex_to_bin-method.patch fs-binfmt_miscc-use-kernels-hex_to_bin-method-fix.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