The patch titled lockdep: annotate sound/core/seq/seq_device.c has been removed from the -mm tree. Its filename is lockdep-annotate-sound-core-seq-seq_devicec.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: lockdep: annotate sound/core/seq/seq_device.c From: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> The ops structure has complex locking rules, where not all ops are equal, some are subordinate on others for some complex sound cards. This requires for lockdep checking that each individual reg_mutex is considered in separation for its locking rules. Has no effect on non-lockdep kernels. Signed-off-by: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Cc: Jaroslav Kysela <perex@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- sound/core/seq/seq_device.c | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN sound/core/seq/seq_device.c~lockdep-annotate-sound-core-seq-seq_devicec sound/core/seq/seq_device.c --- a/sound/core/seq/seq_device.c~lockdep-annotate-sound-core-seq-seq_devicec +++ a/sound/core/seq/seq_device.c @@ -380,6 +380,12 @@ static struct ops_list * create_driver(c /* set up driver entry */ strlcpy(ops->id, id, sizeof(ops->id)); mutex_init(&ops->reg_mutex); + /* + * The ->reg_mutex locking rules are per-driver, so we create + * separate per-driver lock classes: + */ + lockdep_set_class(&ops->reg_mutex, (struct lock_class_key *)id); + ops->driver = DRIVER_EMPTY; INIT_LIST_HEAD(&ops->dev_list); /* lock this instance */ _ Patches currently in -mm which might be from arjan@xxxxxxxxxxxxxxx are origin.patch lock-validator-fix-ns83820c-irq-flags-bug.patch sleazy-fpu-feature-x86_64-support.patch sleazy-fpu-feature-x86_64-support-fix.patch sleazy-fpu-feature-i386-support.patch delay-accounting-taskstats-interface-send-tgid-once.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