From patchwork Tue Jan 9 13:09:53 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 10152011 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id DAB79602CA for ; Tue, 9 Jan 2018 13:11:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D8052289C9 for ; Tue, 9 Jan 2018 13:11:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id CD053289D1; Tue, 9 Jan 2018 13:11:03 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.4 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, URIBL_GREY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7D638289C9 for ; Tue, 9 Jan 2018 13:11:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752549AbeAINKC (ORCPT ); Tue, 9 Jan 2018 08:10:02 -0500 Received: from o1682455182.outbound-mail.sendgrid.net ([168.245.5.182]:50472 "EHLO o1682455182.outbound-mail.sendgrid.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754286AbeAINJz (ORCPT ); Tue, 9 Jan 2018 08:09:55 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sendgrid.me; h=from:to:cc:subject:in-reply-to:references:in-reply-to:references; s=smtpapi; bh=vrqXfWerfP5sJf7a3l+lbEB+bsM=; b=J+gsq2o0MGGNKOcZDh VZ9b0e6CiyTwRqHKMF0zLaLBFxye2MzGv3do6ddcRgxhxXwxBPY+PcfpEoC5nUDm o9916N1IBGBrIylk9SZ+YRG20gGS3t/yZk8z690IBA6MwCGxUkqdv2ifuTteaO4A sgjbxfBZcHUl79bESpMCbEQ9s= Received: by filter0023p3iad2.sendgrid.net with SMTP id filter0023p3iad2-10029-5A54BF21-9 2018-01-09 13:09:53.267252421 +0000 UTC Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by ismtpd0001p1lon1.sendgrid.net (SG) with ESMTP id Ny0OBBceSmi8lT2KZVfUuw Tue, 09 Jan 2018 13:09:53.089 +0000 (UTC) From: Kieran Bingham To: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Guennadi Liakhovetski , laurent@vger.kernel.org, Olivier BRAUN , Troy Kisky , Kieran Bingham Subject: [RFT PATCH v2 4/6] uvcvideo: queue: Simplify spin-lock usage Date: Tue, 09 Jan 2018 13:09:53 +0000 (UTC) Message-Id: <9f83cda1d54615e068c20fcadf69a1f09ae50ec1.1515501206.git-series.kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: References: In-Reply-To: References: X-SG-EID: Tfq0zQjjJFmIKL8hyrOr6KT7wyjsEm7XZZskPfLyBPIbMGSAAbVUcK/g+VxMtogBhQdBMaLGORQcX1 pcIXicSrT89pnP9PEc6u6EpozwRGdLpwnabxtryVRGnZzXApemXOKul5/8GKrXmxDoeNs+CSroVztx 8r8agxpf2UDq6AM7hbtNB5dXfhsXLjavBE846k5ZJxMtF2KY/u7ABsyChlFlx9wvXCfp8bBWTzPby0 RXfx7P589Ko68PEcqg4i/Q Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Both uvc_start_streaming(), and uvc_stop_streaming() are called from userspace context. As such, they do not need to save the IRQ state, and can use spin_lock_irq() and spin_unlock_irq() respectively. Signed-off-by: Kieran Bingham --- drivers/media/usb/uvc/uvc_queue.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/media/usb/uvc/uvc_queue.c b/drivers/media/usb/uvc/uvc_queue.c index 4a581d631525..ddac4d89a291 100644 --- a/drivers/media/usb/uvc/uvc_queue.c +++ b/drivers/media/usb/uvc/uvc_queue.c @@ -158,7 +158,6 @@ static int uvc_start_streaming(struct vb2_queue *vq, unsigned int count) { struct uvc_video_queue *queue = vb2_get_drv_priv(vq); struct uvc_streaming *stream = uvc_queue_to_stream(queue); - unsigned long flags; int ret; queue->buf_used = 0; @@ -167,9 +166,9 @@ static int uvc_start_streaming(struct vb2_queue *vq, unsigned int count) if (ret == 0) return 0; - spin_lock_irqsave(&queue->irqlock, flags); + spin_lock_irq(&queue->irqlock); uvc_queue_return_buffers(queue, UVC_BUF_STATE_QUEUED); - spin_unlock_irqrestore(&queue->irqlock, flags); + spin_unlock_irq(&queue->irqlock); return ret; } @@ -178,13 +177,12 @@ static void uvc_stop_streaming(struct vb2_queue *vq) { struct uvc_video_queue *queue = vb2_get_drv_priv(vq); struct uvc_streaming *stream = uvc_queue_to_stream(queue); - unsigned long flags; uvc_video_enable(stream, 0); - spin_lock_irqsave(&queue->irqlock, flags); + spin_lock_irq(&queue->irqlock); uvc_queue_return_buffers(queue, UVC_BUF_STATE_ERROR); - spin_unlock_irqrestore(&queue->irqlock, flags); + spin_unlock_irq(&queue->irqlock); } static const struct vb2_ops uvc_queue_qops = {