The patch titled fix parsing of statistics type-attribute has been removed from the -mm tree. Its filename was statistics-infrastructure-fix-parsing-of-statistics-type-attribute.patch This patch was dropped because it isn't in the present -mm lineup ------------------------------------------------------ Subject: fix parsing of statistics type-attribute From: Martin Peschke <mp3@xxxxxxxxxx> Without this fix the the statistics user interface accepted, for example: echo name=my_stats type=utilisa > definition while it should only accept: echo name=my_stats type=utilisation > definition Signed-off-by: Martin Peschke <mp3@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/statistic.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN lib/statistic.c~statistics-infrastructure-fix-parsing-of-statistics-type-attribute lib/statistic.c --- a/lib/statistic.c~statistics-infrastructure-fix-parsing-of-statistics-type-attribute +++ a/lib/statistic.c @@ -506,7 +506,8 @@ static int statistic_parse_match(struct len = (args[0].to - args[0].from); for (type = 0; type < STAT_NONE; type++) { disc = &statistic_discs[type]; - if (unlikely(strncmp(disc->name, args[0].from, len))) + if (strlen(disc->name) != len || + strncmp(disc->name, args[0].from, len)) continue; return statistic_parse_single(stat, info, def, type); } _ Patches currently in -mm which might be from mp3@xxxxxxxxxx are - 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