Received: by 10.213.65.68 with SMTP id h4csp281211imn; Tue, 13 Mar 2018 04:18:51 -0700 (PDT) X-Google-Smtp-Source: AG47ELtsogVhCfGjjLIZvdPIeOWYsqUMi4iTGMU87Ekfog6QKZ3zVy7EpmaWZP3XbAjR6t/GdEDz X-Received: by 10.98.20.22 with SMTP id 22mr215144pfu.141.1520939931127; Tue, 13 Mar 2018 04:18:51 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1520939931; cv=none; d=google.com; s=arc-20160816; b=PMS2uK2sbfjsZP+CXq1+J3u+r8L9xQbuuss2vvGsSFgWZb3A6BbSnnvbmhVvWqg6MO i6Q2pqk4pz4AgAyV5MKgBh336TqhkCxo5kUKyr/Ro1ZJ31Q8JJ1dFV7vsXIwiHJjsuB0 Ic3SvKJs91HGZ98Kv46TEmaB82gQwd6oI0OlRrQMTXAn/E4rT8QQxnGxEwAylP6ZavSo dCnmIVpPrNNug57WgOqC1xjmrBLZLBHstsQz+0V2avAtyEwU07KXgD9uy9hTnH7+Gszy rD0+BtmcXF2BgE582ZDM0d4T2f1rL/ehX26zqO5xPJPNR2kBOUQvuzymQDDQ8iIV9r9F X8Hw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from:arc-authentication-results; bh=1jk+FvvIjBVFQb4A+BeGK6UGACZXYnbJMrtKmHZIbOk=; b=jefCsRNbIWT0n2yarMecM3tvc443hEepf3qTaTY0resOxEaBE4vutGy9nGnQROo1n/ enkaukKM6oBQaRaZL6KOwfTLcRt+oNpHEOT7g8bQLxdKTCww+eTyzZ08/C+bSdTF0rRl +1UWEvytZZ627pzHHk3pM9ta277u/2AY2a1WohDs5MhzhbVvdXq+KhhRUoux8CreoX79 h4kIPJyje7HMj5xBU8Mx8kCWSP/kguQaCMQnuLj+QQE/3HCADSR4D+azh4NqI9VReY69 8PtoV8MxqP2UCJGiR6CM1W6PyQYdssqpq+I0Bk0XuNBn8UPjXr3DxA1kv/tWwUKgdlAc rnZA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x32-v6si47101pld.591.2018.03.13.04.18.37; Tue, 13 Mar 2018 04:18:51 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933005AbeCMLR2 (ORCPT + 99 others); Tue, 13 Mar 2018 07:17:28 -0400 Received: from mailapp01.imgtec.com ([195.59.15.196]:34603 "EHLO mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932593AbeCMLR0 (ORCPT ); Tue, 13 Mar 2018 07:17:26 -0400 Received: from hhmail02.hh.imgtec.org (unknown [10.100.10.20]) by Forcepoint Email with ESMTPS id A53DF19CED907; Tue, 13 Mar 2018 11:17:22 +0000 (GMT) Received: from localhost.localdomain (10.60.4.28) by hhmail02.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server (TLS) id 14.3.382.0; Tue, 13 Mar 2018 11:17:24 +0000 From: Eric Engestrom To: CC: Jonathan Corbet , Jiri Kosina , Subject: [trivial PATCH] Documentation/sparse: fix typo Date: Tue, 13 Mar 2018 11:10:58 +0000 Message-ID: <20180313111128.5803-1-eric.engestrom@imgtec.com> X-Mailer: git-send-email 2.16.2 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.60.4.28] Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Eric Engestrom --- Documentation/dev-tools/sparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/dev-tools/sparse.rst b/Documentation/dev-tools/sparse.rst index 78aa00a604a009071361..c401c952a340a50fa769 100644 --- a/Documentation/dev-tools/sparse.rst +++ b/Documentation/dev-tools/sparse.rst @@ -67,7 +67,7 @@ __releases - The specified lock is held on function entry, but not exit. If the function enters and exits without the lock held, acquiring and releasing the lock inside the function in a balanced way, no -annotation is needed. The tree annotations above are for cases where +annotation is needed. The three annotations above are for cases where sparse would otherwise report a context imbalance. Getting sparse -- Cheers, Eric