From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 52262C4332F for ; Fri, 11 Nov 2022 18:11:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233893AbiKKSKl (ORCPT ); Fri, 11 Nov 2022 13:10:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54564 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234045AbiKKSKh (ORCPT ); Fri, 11 Nov 2022 13:10:37 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B9A86117C for ; Fri, 11 Nov 2022 10:10:36 -0800 (PST) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1668190235; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=83xJECtQ8LCpmDxlTNxAmW19rqmCnpjHE1NDAjkv8tA=; b=jucrbjJnLZGSgEAvTALGDpjYWfZ/WuwzCNvjUzE+obstqT6Jlq+ZDJfts3v3CShEb1be6o rLA/wG+/1zqZgZquiT2HnWvleg6OE8SR9rKtYY/6KYrvsFyt0eWWD4U2GJxw02LrLfWy2Y fUXRAXLyvq4AeqvvtBsxzYOZTrQjwTWIsaKasxG6XNSnuacIhBayg5PLn2W9ZUIPTSk93x Xfj0fgJdi8QJEv0UIaCAESxQfoBOcs/8k7jyjiZQV/oPTrtxTBuLXL6xi2f9GoVg4wDUv1 f5rvhSWsuHkAW6YrGHC4p9T+DTL4Ldzw34bER8DCSMhZ9DpQOAOzCySNkNhMbA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1668190235; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=83xJECtQ8LCpmDxlTNxAmW19rqmCnpjHE1NDAjkv8tA=; b=PIhYg4D6ashZovjH4pNFxBU/QZw1guniCyZemtaA3s2gAAEoIHrqBo7PMVBg6VO1O7yV69 kFHGd2796ZPFUvCw== To: Angus Chen Cc: linux-kernel@vger.kernel.org, Angus Chen Subject: Re: [PATCH] genirq: Remove unused parameter force of irq_set_affinity_deactivated() In-Reply-To: <20221007103236.599-1-angus.chen@jaguarmicro.com> References: <20221007103236.599-1-angus.chen@jaguarmicro.com> Date: Fri, 11 Nov 2022 19:10:34 +0100 Message-ID: <87cz9tcqg5.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 07 2022 at 18:32, Angus Chen wrote: > The force parameter in irq_set_affinity_deactivated() is not used, > get rid of it. Correct. > Fixes: baedb87d1b53 ("genirq/affinity: Handle affinity setting on > inactive interrupts correctly") What does this fix? An unused argument is neither a bug nor a problem. Removing it is a cleanup nothing else. Thanks, tglx