return NULL;
 }
 
+/* Must be called with kcov_remote_lock locked. */
 static struct kcov_remote *kcov_remote_add(struct kcov *kcov, u64 handle)
 {
        struct kcov_remote *remote;
        struct kcov_remote_area *area;
        struct list_head *pos;
 
-       kcov_debug("size = %u\n", size);
        list_for_each(pos, &kcov_remote_areas) {
                area = list_entry(pos, struct kcov_remote_area, list);
                if (area->size == size) {
                        list_del(&area->list);
-                       kcov_debug("rv = %px\n", area);
                        return area;
                }
        }
-       kcov_debug("rv = NULL\n");
        return NULL;
 }
 
 static void kcov_remote_area_put(struct kcov_remote_area *area,
                                        unsigned int size)
 {
-       kcov_debug("area = %px, size = %u\n", area, size);
        INIT_LIST_HEAD(&area->list);
        area->size = size;
        list_add(&area->list, &kcov_remote_areas);
        hash_for_each_safe(kcov_remote_map, bkt, tmp, remote, hnode) {
                if (remote->kcov != kcov)
                        continue;
-               kcov_debug("removing handle %llx\n", remote->handle);
                hash_del(&remote->hnode);
                kfree(remote);
        }
 
        switch (cmd) {
        case KCOV_INIT_TRACE:
-               kcov_debug("KCOV_INIT_TRACE\n");
                /*
                 * Enable kcov in trace mode and setup buffer size.
                 * Must happen before anything else.
                kcov->mode = KCOV_MODE_INIT;
                return 0;
        case KCOV_ENABLE:
-               kcov_debug("KCOV_ENABLE\n");
                /*
                 * Enable coverage for the current task.
                 * At this point user must have been enabled trace mode,
                kcov_get(kcov);
                return 0;
        case KCOV_DISABLE:
-               kcov_debug("KCOV_DISABLE\n");
                /* Disable coverage for the current task. */
                unused = arg;
                if (unused != 0 || current->kcov != kcov)
                kcov_put(kcov);
                return 0;
        case KCOV_REMOTE_ENABLE:
-               kcov_debug("KCOV_REMOTE_ENABLE\n");
                if (kcov->mode != KCOV_MODE_INIT || !kcov->area)
                        return -EINVAL;
                t = current;
                kcov->remote_size = remote_arg->area_size;
                spin_lock(&kcov_remote_lock);
                for (i = 0; i < remote_arg->num_handles; i++) {
-                       kcov_debug("handle %llx\n", remote_arg->handles[i]);
                        if (!kcov_check_handle(remote_arg->handles[i],
                                                false, true, false)) {
                                spin_unlock(&kcov_remote_lock);
                        }
                }
                if (remote_arg->common_handle) {
-                       kcov_debug("common handle %llx\n",
-                                       remote_arg->common_handle);
                        if (!kcov_check_handle(remote_arg->common_handle,
                                                true, false, false)) {
                                spin_unlock(&kcov_remote_lock);
        spin_lock(&kcov_remote_lock);
        remote = kcov_remote_find(handle);
        if (!remote) {
-               kcov_debug("no remote found");
                spin_unlock(&kcov_remote_lock);
                return;
        }
        /* Reset coverage size. */
        *(u64 *)area = 0;
 
-       kcov_debug("area = %px, size = %u", area, size);
-
        kcov_start(t, size, area, mode, sequence);
 
 }
        unsigned int size = t->kcov_size;
        int sequence = t->kcov_sequence;
 
-       if (!kcov) {
-               kcov_debug("no kcov found\n");
+       if (!kcov)
                return;
-       }
 
        kcov_stop(t);
        t->kcov = NULL;
         * KCOV_DISABLE could have been called between kcov_remote_start()
         * and kcov_remote_stop(), hence the check.
         */
-       kcov_debug("move if: %d == %d && %d\n",
-               sequence, kcov->sequence, (int)kcov->remote);
        if (sequence == kcov->sequence && kcov->remote)
                kcov_move_area(kcov->mode, kcov->area, kcov->size, area);
        spin_unlock(&kcov->lock);