The patch titled Linux Kernel Markers - Samples Coding Style Fix has been removed from the -mm tree. Its filename was linux-kernel-markers-samples-coding-style-fix.patch This patch was dropped because it was folded into linux-kernel-markers-samples.patch ------------------------------------------------------ Subject: Linux Kernel Markers - Samples Coding Style Fix From: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxx> - Change struct __mark_marker to struct marker. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxx> Cc: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN samples/markers/probe-example.c~linux-kernel-markers-samples-coding-style-fix samples/markers/probe-example.c --- a/samples/markers/probe-example.c~linux-kernel-markers-samples-coding-style-fix +++ a/samples/markers/probe-example.c @@ -20,8 +20,8 @@ struct probe_data { marker_probe_func *probe_func; }; -void probe_subsystem_event(const struct __mark_marker *mdata, - void *private, const char *format, ...) +void probe_subsystem_event(const struct marker *mdata, void *private, + const char *format, ...) { va_list ap; /* Declare args */ @@ -43,8 +43,8 @@ void probe_subsystem_event(const struct atomic_t eventb_count = ATOMIC_INIT(0); -void probe_subsystem_eventb(const struct __mark_marker *mdata, - void *private, const char *format, ...) +void probe_subsystem_eventb(const struct marker *mdata, void *private, + const char *format, ...) { /* Increment counter */ atomic_inc(&eventb_count); _ Patches currently in -mm which might be from mathieu.desnoyers@xxxxxxxxxx are origin.patch change-struct-marker-users.patch combine-instrumentation-menus-in-kernel-kconfiginstrumentation.patch linux-kernel-markers.patch add-samples-subdir.patch linux-kernel-markers-samples.patch linux-kernel-markers-samples-coding-style-fix.patch linux-kernel-markers-samples-remove-asm.patch linux-kernel-markers-documentation.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