The patch titled usbaudio: handle kcalloc failure has been removed from the -mm tree. Its filename was usbaudio-handle-kcalloc-failure.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: usbaudio: handle kcalloc failure From: Jim Meyering <jim@xxxxxxxxxxxx> sound/usb/usbaudio.c (check_hw_params_convention): Handle kcalloc failure. Signed-off-by: Jim Meyering <meyering@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- sound/usb/usbaudio.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN sound/usb/usbaudio.c~usbaudio-handle-kcalloc-failure sound/usb/usbaudio.c --- a/sound/usb/usbaudio.c~usbaudio-handle-kcalloc-failure +++ a/sound/usb/usbaudio.c @@ -1735,6 +1735,8 @@ static int check_hw_params_convention(st channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL); rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL); + if (!channels || !rates) + goto __out; list_for_each(p, &subs->fmt_list) { struct audioformat *f; _ Patches currently in -mm which might be from jim@xxxxxxxxxxxx are 9p-handle-kstrdup-and-match_strdup-failure.patch alpha-handle-kcalloc-failure.patch affs-handle-match_strdup-failure.patch hfs-handle-match_strdup-failure.patch hfsplus-handle-match_strdup-failure.patch lib-inflatec-handle-failed-malloc.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