staging: bcm2835-audio: Check if workqueue allocation failed
authorTuomas Tynkkynen <tuomas@tuxera.com>
Thu, 12 Jul 2018 21:54:16 +0000 (00:54 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 13 Jul 2018 09:37:34 +0000 (11:37 +0200)
Currently, if allocating a workqueue fails, the driver will probe
successfully but it will silently do nothing, which is rather silly.
So instead bail out with -ENOMEM in bcm2835_audio_open() if
alloc_workqueue() fails, and remove the now pointless checks for a NULL
workqueue.

While at it, get rid of the rather pointless one-line function
my_workqueue_init().

Signed-off-by: Tuomas Tynkkynen <tuomas@tuxera.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/bcm2835-audio/bcm2835-vchiq.c

index f0cefa1b7b0f5b53caa747b50ea072acbfc463ac..8c4345cb44af5a0cb1ff80d085f03af499c624d6 100644 (file)
@@ -117,44 +117,40 @@ static void my_wq_function(struct work_struct *work)
 
 int bcm2835_audio_start(struct bcm2835_alsa_stream *alsa_stream)
 {
-       if (alsa_stream->my_wq) {
-               struct bcm2835_audio_work *work;
-
-               work = kmalloc(sizeof(*work), GFP_ATOMIC);
-               /*--- Queue some work (item 1) ---*/
-               if (!work) {
-                       LOG_ERR(" .. Error: NULL work kmalloc\n");
-                       return -ENOMEM;
-               }
-               INIT_WORK(&work->my_work, my_wq_function);
-               work->alsa_stream = alsa_stream;
-               work->cmd = BCM2835_AUDIO_START;
-               if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
-                       kfree(work);
-                       return -EBUSY;
-               }
+       struct bcm2835_audio_work *work;
+
+       work = kmalloc(sizeof(*work), GFP_ATOMIC);
+       /*--- Queue some work (item 1) ---*/
+       if (!work) {
+               LOG_ERR(" .. Error: NULL work kmalloc\n");
+               return -ENOMEM;
+       }
+       INIT_WORK(&work->my_work, my_wq_function);
+       work->alsa_stream = alsa_stream;
+       work->cmd = BCM2835_AUDIO_START;
+       if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
+               kfree(work);
+               return -EBUSY;
        }
        return 0;
 }
 
 int bcm2835_audio_stop(struct bcm2835_alsa_stream *alsa_stream)
 {
-       if (alsa_stream->my_wq) {
-               struct bcm2835_audio_work *work;
-
-               work = kmalloc(sizeof(*work), GFP_ATOMIC);
-               /*--- Queue some work (item 1) ---*/
-               if (!work) {
-                       LOG_ERR(" .. Error: NULL work kmalloc\n");
-                       return -ENOMEM;
-               }
-               INIT_WORK(&work->my_work, my_wq_function);
-               work->alsa_stream = alsa_stream;
-               work->cmd = BCM2835_AUDIO_STOP;
-               if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
-                       kfree(work);
-                       return -EBUSY;
-               }
+       struct bcm2835_audio_work *work;
+
+       work = kmalloc(sizeof(*work), GFP_ATOMIC);
+       /*--- Queue some work (item 1) ---*/
+       if (!work) {
+               LOG_ERR(" .. Error: NULL work kmalloc\n");
+               return -ENOMEM;
+       }
+       INIT_WORK(&work->my_work, my_wq_function);
+       work->alsa_stream = alsa_stream;
+       work->cmd = BCM2835_AUDIO_STOP;
+       if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
+               kfree(work);
+               return -EBUSY;
        }
        return 0;
 }
@@ -162,40 +158,31 @@ int bcm2835_audio_stop(struct bcm2835_alsa_stream *alsa_stream)
 int bcm2835_audio_write(struct bcm2835_alsa_stream *alsa_stream,
                        unsigned int count, void *src)
 {
-       if (alsa_stream->my_wq) {
-               struct bcm2835_audio_work *work;
-
-               work = kmalloc(sizeof(*work), GFP_ATOMIC);
-               /*--- Queue some work (item 1) ---*/
-               if (!work) {
-                       LOG_ERR(" .. Error: NULL work kmalloc\n");
-                       return -ENOMEM;
-               }
-               INIT_WORK(&work->my_work, my_wq_function);
-               work->alsa_stream = alsa_stream;
-               work->cmd = BCM2835_AUDIO_WRITE;
-               work->src = src;
-               work->count = count;
-               if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
-                       kfree(work);
-                       return -EBUSY;
-               }
+       struct bcm2835_audio_work *work;
+
+       work = kmalloc(sizeof(*work), GFP_ATOMIC);
+       /*--- Queue some work (item 1) ---*/
+       if (!work) {
+               LOG_ERR(" .. Error: NULL work kmalloc\n");
+               return -ENOMEM;
+       }
+       INIT_WORK(&work->my_work, my_wq_function);
+       work->alsa_stream = alsa_stream;
+       work->cmd = BCM2835_AUDIO_WRITE;
+       work->src = src;
+       work->count = count;
+       if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
+               kfree(work);
+               return -EBUSY;
        }
        return 0;
 }
 
-static void my_workqueue_init(struct bcm2835_alsa_stream *alsa_stream)
-{
-       alsa_stream->my_wq = alloc_workqueue("my_queue", WQ_HIGHPRI, 1);
-}
-
 static void my_workqueue_quit(struct bcm2835_alsa_stream *alsa_stream)
 {
-       if (alsa_stream->my_wq) {
-               flush_workqueue(alsa_stream->my_wq);
-               destroy_workqueue(alsa_stream->my_wq);
-               alsa_stream->my_wq = NULL;
-       }
+       flush_workqueue(alsa_stream->my_wq);
+       destroy_workqueue(alsa_stream->my_wq);
+       alsa_stream->my_wq = NULL;
 }
 
 static void audio_vchi_callback(void *param,
@@ -436,7 +423,9 @@ int bcm2835_audio_open(struct bcm2835_alsa_stream *alsa_stream)
        int status;
        int ret;
 
-       my_workqueue_init(alsa_stream);
+       alsa_stream->my_wq = alloc_workqueue("my_queue", WQ_HIGHPRI, 1);
+       if (!alsa_stream->my_wq)
+               return -ENOMEM;
 
        ret = bcm2835_audio_open_connection(alsa_stream);
        if (ret) {