Received: by 2002:a05:6a10:2785:0:0:0:0 with SMTP id ia5csp678332pxb; Thu, 14 Jan 2021 16:14:56 -0800 (PST) X-Google-Smtp-Source: ABdhPJwFIZt0BcqCIUlESLkSbfVYFY6RafzgXmwjnm/gih9ilMe3+SBPW1WmQwiFT9TTQn1r8lBd X-Received: by 2002:a17:906:1e87:: with SMTP id e7mr1272471ejj.322.1610669695924; Thu, 14 Jan 2021 16:14:55 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1610669695; cv=none; d=google.com; s=arc-20160816; b=GKH3107onJpBVJIh3BahLALDQMFByr/yiJEFBEuRjsksacE3LzqRpyKh8GbKnUVZfM nSz3ErwGt+FpvqYqrrD7aYhqAOBKTe7zc5ptpSbWHcsdfzUVIY+AyLlf9ulKH1xgDaGk /ldJmR0BQHfbw8vTbw3vqycgzGHHqg1+JiWqA3Pewh+7+hurZCFuF1B77XUUzMw8g4Tw Yls7yFFUKC5NQpaT4YYAWUZBpJdPNsE04sf2Pw75WwF1DWqw0lcX2TUPrpE2y/1EiEU9 bZUAzR+51jQwVdtmiMeEEeDowKZd52x2ECoNyojAEgqL5SOzweSxTTKNhjCWtvb8k+Kp h5cA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=tp4zyAcZ4kklozwiGJE8/AdAtGfg7ZBr9xZ7/55EwgQ=; b=NY4FOlZx0BS9GR90KEjW0pRiSXyMelz0DkoT8ijaBimI498S9cInASEeS4IEP5tC14 z0Bs9NVc/eoI64771fHO/bBVzC778uiHp129+jY0oVjFyB8i5X5QZxx6Ot3/NdOG8n/V UmFE+e3iWYkB+i6gaesMrLLJoI+SAp4Q0lW+kJn+Qt8v4E6Mnrz40/kq9npc73507nKR vk/n4Z3JlLv9rkNgdZv77Lam0YjXMYFg7ILZl6u8u0BCdbs24Yw1B78ezrwayW3A1u97 l8/VLAuR3/2Z1+GgLJi14ac2wWDh/Qb38KcxmPH0i5nsDRtRAGWVunUjmHQ7fyqYqahf q5mA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p20si3286401eds.141.2021.01.14.16.14.32; Thu, 14 Jan 2021 16:14:55 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731165AbhAOANK (ORCPT + 99 others); Thu, 14 Jan 2021 19:13:10 -0500 Received: from mx2.suse.de ([195.135.220.15]:45750 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731073AbhAOANK (ORCPT ); Thu, 14 Jan 2021 19:13:10 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 5009CABDA; Fri, 15 Jan 2021 00:12:29 +0000 (UTC) From: Davidlohr Bueso To: paul@paul-moore.com Cc: linux-audit@redhat.com, linux-kernel@vger.kernel.org, dave@stgolabs.net, Davidlohr Bueso Subject: [PATCH] audit: Remove leftover reference to the audit_tasklet Date: Thu, 14 Jan 2021 16:12:01 -0800 Message-Id: <20210115001201.116832-1-dave@stgolabs.net> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This was replaced with a kauditd_wait kthread long ago, back in: b7d1125817c (AUDIT: Send netlink messages from a separate kernel thread) Update the stale comment. Signed-off-by: Davidlohr Bueso --- kernel/audit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/audit.c b/kernel/audit.c index 1ffc2e059027..8fd735190c12 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -2365,7 +2365,7 @@ int audit_signal_info(int sig, struct task_struct *t) * * We can not do a netlink send inside an irq context because it blocks (last * arg, flags, is not set to MSG_DONTWAIT), so the audit buffer is placed on a - * queue and a tasklet is scheduled to remove them from the queue outside the + * queue and a kthread is scheduled to remove them from the queue outside the * irq context. May be called in any context. */ void audit_log_end(struct audit_buffer *ab) -- 2.26.2