From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-185.mta1.migadu.com (out-185.mta1.migadu.com [95.215.58.185]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4E15218B462 for ; Fri, 25 Oct 2024 18:47:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.185 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729882080; cv=none; b=S8kEF0bW+WsV1HtB3MpYEZthgwY7EDPHyXTehBU04QiO0xORgRZJ67dKXk98H6klTzQWaHRfx0AscdPxVKKZd2kzXZDvuUiDyBRYzYDVuurHsIpjzEUcah/dwT9r1l/+Qjm4oKlSZUse5ce2rv8JFUvuCpPDR7PhwannzT/KuXI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729882080; c=relaxed/simple; bh=nf4PW4J7OPEp0bC9Zy7Ri1so7+xS2fBU+ifvzCD6UX0=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Cc: Message-Id:References:To; b=cWeJKYSRMd93CW4N6uUhLy6G7sLjSbP/AKfgWH3IwKCR7oPbIwmEZu/9ZP//ADraE4yBZiD5ePk9pkWNL3r3bchElZ1JaNs6NkQ5e16prPu/M4Qp5RREfU2B9WouVXKTRSjDQdJmBHeD8XWTMu8VbXtNgzx27D5Iaw+G9uceQkU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=nmBa2APn; arc=none smtp.client-ip=95.215.58.185 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="nmBa2APn" Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1729882075; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=3cgWzqfDff8Y3kbsrFgSK2EnKm7LN2kj3i4sVoqz1Qk=; b=nmBa2APndu0Slf6SLiJNT4oDtB54WHmIxeVMcPIIxRSJn2oDUMBkxJev5Gs0UpzxPHquaM 4/pElesMoEuRHeob04d/2mKN5ekUoKPDP/UhlzvlnsoIqN0IruRqoN0zkgpiMYYKNlU2af N31I2Axo3j+tRCLweo0iqlO+B6EPoPQ= Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3776.700.51.11.1\)) Subject: Re: [PATCH net-next] wifi: trace: Replace BOOL_TO_STR() with str_true_false() X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Thorsten Blum In-Reply-To: Date: Fri, 25 Oct 2024 20:47:41 +0200 Cc: linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org Content-Transfer-Encoding: 7bit Message-Id: References: <20241025163210.1395-2-thorsten.blum@linux.dev> To: Johannes Berg X-Migadu-Flow: FLOW_OUT On 25. Oct 2024, at 18:41, Johannes Berg wrote: > On Fri, 2024-10-25 at 18:32 +0200, Thorsten Blum wrote: >> Replace the custom BOOL_TO_STR() macro with the str_true_false() helper >> function and remove the macro. > > That's an inline function, I don't think that works - you'd have to > teach trace-cmd what it means? I see - didn't think about that and only compile-tested it. Thanks, Thorsten