Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756881AbdCUJ2s (ORCPT ); Tue, 21 Mar 2017 05:28:48 -0400 Received: from out0-134.mail.aliyun.com ([140.205.0.134]:59492 "EHLO out0-134.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753279AbdCUJ2q (ORCPT ); Tue, 21 Mar 2017 05:28:46 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R271e4;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e02c03273;MF=hillf.zj@alibaba-inc.com;NM=1;PH=DS;RN=9;SR=0;TI=SMTPD_---.7pnZS73_1490088499; Reply-To: "Hillf Danton" From: "Hillf Danton" To: "'Dmitry Vyukov'" , , Cc: "'Kefeng Wang'" , "'James Morse'" , "'Alexander Popov'" , "'Andrey Konovalov'" , , References: <20170321091026.139655-1-dvyukov@google.com> In-Reply-To: <20170321091026.139655-1-dvyukov@google.com> Subject: Re: [PATCH] kcov: simplify interrupt check Date: Tue, 21 Mar 2017 17:28:19 +0800 Message-ID: <005501d2a225$7ab66870$70233950$@alibaba-inc.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-Index: AQGbD7AyPI8RlWVlpWvPOSeEaf/tNKIOKrcw Content-Language: zh-cn Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 830 Lines: 21 On March 21, 2017 5:10 PM Dmitry Vyukov wrote: > > @@ -60,15 +60,8 @@ void notrace __sanitizer_cov_trace_pc(void) > /* > * We are interested in code coverage as a function of a syscall inputs, > * so we ignore code executed in interrupts. > - * The checks for whether we are in an interrupt are open-coded, because > - * 1. We can't use in_interrupt() here, since it also returns true > - * when we are inside local_bh_disable() section. > - * 2. We don't want to use (in_irq() | in_serving_softirq() | in_nmi()), > - * since that leads to slower generated code (three separate tests, > - * one for each of the flags). > */ > - if (!t || (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_OFFSET > - | NMI_MASK))) > + if (!t || !in_task()) > return; Nit: can we get the current task check cut off?