Hi all, Today's linux-next merge of the ftrace tree got a conflict in include/linux/ftrace.h between commit 9c24624727f6d6c460e45762a408ca5f5b9b8ef2 ("KSYM_SYMBOL_LEN fixes") from Linus' tree and commit 3f5ec13696fd4a33bde42f385406cbb1d3cc96fd ("tracing/fastboot: move boot tracer structs and funcs into their own header") from the ftrace tree. The latter moved some code that the former fixed. I fixed it up as best I could (see below - I used the ftrace tree version of include/linux/ftrace.h), but it should be checked and a merge with Linus' tree done to resolve this conflict. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --git a/include/trace/boot.h b/include/trace/boot.h index 6b54537..3ec58b4 100644 --- a/include/trace/boot.h +++ b/include/trace/boot.h @@ -9,7 +9,7 @@ */ struct boot_trace_call { pid_t caller; - char func[KSYM_NAME_LEN]; + char func[KSYM_SYMBOL_LEN]; }; /* @@ -17,7 +17,7 @@ struct boot_trace_call { * while it returns. */ struct boot_trace_ret { - char func[KSYM_NAME_LEN]; + char func[KSYM_SYMBOL_LEN]; int result; unsigned long long duration; /* nsecs */ }; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html