The patch titled clocksource: x86_64 initialize list value has been removed from the -mm tree. Its filename was clocksource-x86_64-initialize-list-value.patch This patch was dropped because of general bunfight ------------------------------------------------------ Subject: clocksource: x86_64 initialize list value From: Daniel Walker <dwalker@xxxxxxxxxx> Update arch/x86_64/ with list initialization. Signed-off-by: Daniel Walker <dwalker@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: john stultz <johnstul@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86_64/kernel/hpet.c | 1 + arch/x86_64/kernel/tsc.c | 1 + 2 files changed, 2 insertions(+) diff -puN arch/x86_64/kernel/hpet.c~clocksource-x86_64-initialize-list-value arch/x86_64/kernel/hpet.c --- a/arch/x86_64/kernel/hpet.c~clocksource-x86_64-initialize-list-value +++ a/arch/x86_64/kernel/hpet.c @@ -131,6 +131,7 @@ struct clocksource clocksource_hpet = { .shift = HPET_SHIFT, .flags = CLOCK_SOURCE_IS_CONTINUOUS, .vread = vread_hpet, + .list = LIST_HEAD_INIT(clocksource_hpet.list), }; int hpet_arch_init(void) diff -puN arch/x86_64/kernel/tsc.c~clocksource-x86_64-initialize-list-value arch/x86_64/kernel/tsc.c --- a/arch/x86_64/kernel/tsc.c~clocksource-x86_64-initialize-list-value +++ a/arch/x86_64/kernel/tsc.c @@ -197,6 +197,7 @@ static struct clocksource clocksource_ts .flags = CLOCK_SOURCE_IS_CONTINUOUS | CLOCK_SOURCE_MUST_VERIFY, .vread = vread_tsc, + .list = LIST_HEAD_INIT(clocksource_tsc.list), }; void mark_tsc_unstable(void) _ Patches currently in -mm which might be from dwalker@xxxxxxxxxx are clocksource-x86_64-initialize-list-value.patch clocksource-s390-initialize-list-value.patch clocksource-driver-initialize-list-value.patch clocksource-refactor-duplicate-registration-checking.patch slim-make-and-config-stuff.patch profile-likely-unlikely-macros.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