Re: [PATCH] Implement git-quiltimport (take 2)
From: Eric W. Biederman <hidden>
Date: 2016-06-15 22:42:26
Junio C Hamano [off-list ref] writes:
ebiederm@xmission.com (Eric W. Biederman) writes:quoted
Currently git-mailinfo distinguishes headers and non-headers by the presence of the first blank line. So it seems to work just fine on mbox format patches.The program was designed to be fed one e-mail a time (the intended way for it to work is that a wrapper script uses git-mailsplit to break mbox up and call git-mailinfo one by one).
In this case what is meant is a leading "From " header (no colon) at the start of the patch. Where git-mailinfo is likely to fall down is more in the quilt patches from Andi Kleen. If you look at my quoted patch header below you will see the subject is a plain line, followed by a space followed by a from. On this example git-mailinfo works (except for picking up the subject) but it appears to be a fluke.
From x86_64-mm-add-abilty-to-enable-disable-nmi-watchdog-from-sysfs.patch:
Add abilty to enable/disable nmi watchdog with sysctl From: dzickus <redacted> Adds a new /proc/sys/kernel/nmi call that will enable/disable the nmi watchdog. Signed-off-by: Don Zickus <redacted> Signed-off-by: Andi Kleen <redacted> --- arch/i386/kernel/nmi.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++ arch/x86_64/kernel/nmi.c | 48 +++++++++++++++++++++++++++++++++++++++++++ include/asm-i386/nmi.h | 1 include/asm-x86_64/nmi.h | 1 include/linux/sysctl.h | 1 kernel/sysctl.c | 11 +++++++++ 6 files changed, 114 insertions(+) Index: linux/arch/i386/kernel/nmi.c
Eric