The patch titled DS1374: check for workqueue creation has been added to the -mm tree. Its filename is ds1374-check-for-workqueue-creation.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: DS1374: check for workqueue creation From: "Cyrill V. Gorcunov" <gorcunov@xxxxxxxxx> Check if workqueue creation failed. Further usage of NULL pointed workqueue is not good I guess ;) Signed-off-by: Cyrill V. Gorcunov <gorcunov@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/i2c/chips/ds1374.c | 4 ++++ 1 files changed, 4 insertions(+) diff -puN drivers/i2c/chips/ds1374.c~ds1374-check-for-workqueue-creation drivers/i2c/chips/ds1374.c --- a/drivers/i2c/chips/ds1374.c~ds1374-check-for-workqueue-creation +++ a/drivers/i2c/chips/ds1374.c @@ -207,6 +207,10 @@ static int ds1374_probe(struct i2c_adapt client->driver = &ds1374_driver; ds1374_workqueue = create_singlethread_workqueue("ds1374"); + if (!ds1374_workqueue) { + kfree(client); + return -ENOMEM; /* most expected reason */ + } if ((rc = i2c_attach_client(client)) != 0) { kfree(client); _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are origin.patch ds1374-check-for-workqueue-creation.patch git-input.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