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 0EC2CC61D97 for ; Wed, 22 Nov 2023 16:59:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343684AbjKVQ7n (ORCPT ); Wed, 22 Nov 2023 11:59:43 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43858 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229738AbjKVQ7m (ORCPT ); Wed, 22 Nov 2023 11:59:42 -0500 X-Greylist: delayed 406 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Wed, 22 Nov 2023 08:59:34 PST Received: from out-180.mta1.migadu.com (out-180.mta1.migadu.com [95.215.58.180]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8CA6111F for ; Wed, 22 Nov 2023 08:59:34 -0800 (PST) MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1700671964; 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=Jr/Y7V7f6fGAsxzikGQR3EngaKckAlq67YJMnyebHus=; b=Nze2GiZ4tmmrzUZaJsqvtJVxRE69XlAUDczYpRLhSH6ybA2eO57YKiZpx1NKD8pqhIENqX 6fI57aVUoJVbAqWbEJaCdJvgZvTXr9lgZZrjOxamjO/yvH8OjhR6GAsjrn/DWd1Qh6cP81 68HeyEFdDHjhWdoPC0uLITdLzF1IvyA= Date: Wed, 22 Nov 2023 16:52:43 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "Konstantin Ryabitsev" Message-ID: TLS-Required: No Subject: Re: [PATCH] x86/hyperv: Use atomic_try_cmpxchg() to micro-optimize hv_nmi_unknown() To: "Wei Liu" , "Uros Bizjak" Cc: linux-hyperv@vger.kernel.org, linux-kernel@vger.kernel.org, tools@linux.kernel.org In-Reply-To: References: <20231114170038.381634-1-ubizjak@gmail.com> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org November 21, 2023 at 10:51 PM, "Wei Liu" wrote: > Uros, just so you know, DKIM verification failed when I used b4 to appl= y > this patch. You may want to check your email setup. This is not actually Uros's fault. Recently, Gmail started adding a force= d expiration field to their DKIM signatures, via the x=3D field: DKIM-Signature: v=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed; d=3Dgmail.com; s=3D20230601; t=3D1699981249; x=3D1700586049; darn= =3Dvger.kernel.org; ^^^^^^^^^^^^^ This gives the signature an enforced validity of only 7 days. Since the o= riginal message was sent on November 14 and you're retrieving it on Novem= ber 21, this causes the DKIM check to fail. I need to figure out how to make b4 ignore the x=3D field, because it's n= ot relevant for our purposes, but the library we're using for DKIM doesn'= t currently have any mechanism to do so. I will open an RFE with them in = the hopes that we can get this implemented. Regards, -K