ANDROID: goldfish_pipe: fix call_kern.cocci warnings
[firefly-linux-kernel-4.4.55.git] / drivers / platform / goldfish / goldfish_pipe_v2.c
index bdb039bc7ddea7c5846ab6ce5ec7036e19cdb013..ad373ed36555233215349eb804dd344a4020290a 100644 (file)
@@ -616,7 +616,8 @@ static int get_free_pipe_id_locked(struct goldfish_pipe_dev *dev)
                /* Reallocate the array */
                u32 new_capacity = 2 * dev->pipes_capacity;
                struct goldfish_pipe **pipes =
-                               kcalloc(new_capacity, sizeof(*pipes), GFP_KERNEL);
+                               kcalloc(new_capacity, sizeof(*pipes),
+                                       GFP_ATOMIC);
                if (!pipes)
                        return -ENOMEM;
                memcpy(pipes, dev->pipes, sizeof(*pipes) * dev->pipes_capacity);