0 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767611078; bh=MGZNt/Cw5jcNvjnbjs38Oj2ne4kmN9yf0/uGrwi/tpA=; h=Subject:To:Cc:From:Date:From; b=A+GRSZ0zKqkR/jkwDXxP2JWGSg3yTjK3q+Uwr/on2RJm/LQhFaQ0FFl4ZVijcOb82 Tcb9koYWOrovM8tcT4kMOXP9oTx8imt3M0qnn5PVg9GdG2UdcQfsWZfjCA+VPofmR+ t7+dqr80Un4WMz8xPssgP8h/yhiEbdJcUKxVyEO8= Subject: FAILED: patch "[PATCH] mm/damon/tests/core-kunit: handle memory failure from" failed to apply to 6.6-stable tree To: sj@kernel.org,akpm@linux-foundation.org,brendan.higgins@linux.dev,davidgow@google.com,stable@vger.kernel.org,wangkefeng.wang@huawei.com Cc: From: Date: Mon, 05 Jan 2026 12:04:35 +0100 Message-ID: <2026010535-tumbling-unread-bbf4@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit X-DKIM: signer='linuxfoundation.org' status='pass' reason='' DKIMCheck: Server passes DKIM test, 0 Spam score X-Spam-Score: 0.4 (/) X-Spam-Report: Spam detection software, running on the system "witcher.mxrouting.net", has performed the tests listed below against this email. Information: https://mxroutedocs.com/directadmin/spamfilters/ --- Content analysis details: (0.4 points) --- pts rule name description ---- ---------------------- ----------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: linuxfoundation.org] 0.0 RCVD_IN_DNSWL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to DNSWL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#DnsBlocklists-dnsbl-block for more information. [172.234.253.10 listed in list.dnswl.org] 1.5 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager -0.0 DKIMWL_WL_HIGH DKIMwl.org - High trust sender SpamTally: Final spam score: 4 The patch below does not apply to the 6.6-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.6.y git checkout FETCH_HEAD git cherry-pick -x fafe953de2c661907c94055a2497c6b8dbfd26f3 # git commit -s git send-email --to '' --in-reply-to '2026010535-tumbling-unread-bbf4@gregkh' --subject-prefix 'PATCH 6.6.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From fafe953de2c661907c94055a2497c6b8dbfd26f3 Mon Sep 17 00:00:00 2001 From: SeongJae Park Date: Sat, 1 Nov 2025 11:19:57 -0700 Subject: [PATCH] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() damon_test_target() is assuming all dynamic memory allocation in it will succeed. Those are indeed likely in the real use cases since those allocations are too small to fail, but theoretically those could fail. In the case, inappropriate memory access can happen. Fix it by appropriately cleanup pre-allocated memory and skip the execution of the remaining tests in the failure cases. Link: https://lkml.kernel.org/r/20251101182021.74868-4-sj@kernel.org Fixes: 17ccae8bb5c9 ("mm/damon: add kunit tests") Signed-off-by: SeongJae Park Cc: Brendan Higgins Cc: David Gow Cc: Kefeng Wang Cc: [5.15+] Signed-off-by: Andrew Morton diff --git a/mm/damon/tests/core-kunit.h b/mm/damon/tests/core-kunit.h index a2c9ee7a5de1..6e8a605277a3 100644 --- a/mm/damon/tests/core-kunit.h +++ b/mm/damon/tests/core-kunit.h @@ -58,7 +58,14 @@ static void damon_test_target(struct kunit *test) struct damon_ctx *c = damon_new_ctx(); struct damon_target *t; + if (!c) + kunit_skip(test, "ctx alloc fail"); + t = damon_new_target(); + if (!t) { + damon_destroy_ctx(c); + kunit_skip(test, "target alloc fail"); + } KUNIT_EXPECT_EQ(test, 0u, nr_damon_targets(c)); damon_add_target(c, t); From - Mon Jan 05 11:17:42 2026 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Return-Path: Delivered-To: hi@josie.lol Received: from witcher.mxrouting.net by witcher.mxrouting.net with LMTP id MND+I9KdW2mVrgEAYBR5ng (envelope-from ) for ; Mon, 05 Jan 2026 11:17:38 +0000 Return-path: Envelope-to: hi@josie.lol Delivery-date: Mon, 05 Jan 2026 11:17:38 +0000 Received: from sea.lore.kernel.org ([172.234.253.10]) by witcher.mxrouting.net with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1vciag-00000000iEv-14FC for hi@josie.lol; Mon, 05 Jan 2026 11:17:38 +0000 Received: from smtp.subspace.kernel.org (conduit.subspace.kernel.org [100.90.174.1]) by sea.lore.kernel.org (Postfix) with ESMTP id 9C5CB30CF5B5 for ; Mon, 5 Jan 2026 11:12:06 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 6ED44330B1E; Mon, 5 Jan 2026 11:05:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="oes+ICBF" X-Original-To: stable@vger.kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 B3C23329C59 for ; Mon, 5 Jan 2026 11:05:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767611111; cv=none; b=h3iRnUSZ00SokjcN6cTYbUXct3npLlZbzC0iJX9fEIRxN5YdX/roVdqBqBIupR8Czs8sAt3vgvgYvPIQc4qwJ889/7ON3vQd3o/V7B1LnmHeYusEqCOva9HDypCLmaQrxc44aLkaXSofoB9J6wwt5Q+va8XpLoNf8gIM46FxGdA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767611111; c=relaxed/simple; bh=HepWdr61P2Nnu0TfA8hlDSWF8r43PB+woQ5DTEhEZCM=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=dCPNsxIzJbzo3JN6DvnEPG6X4Wng5Q++3jAvbGHMsaor8RvXvN9ZxfSMiATvm61bcKevuCw6MFC/ieU9eDqIJe516o+dpMypUP6wkSrj06GvPvWbOSGPKoQtFWUc1QaaLg8eivGNKMDTOsWS7PTr+/JyOnRMEnE++OjJ1+fjwis= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=oes+ICBF; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA The resource https://discord.com/assets/189422196a4f8b53.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:40:54.351] [warn] The resource https://discord.com/assets/ce3b8055f5114434.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:40:54.351] [warn] The resource https://discord.com/assets/cb2006dbced0e246.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:40:54.351] [warn] The resource https://discord.com/assets/7a6a566c2e88a35d.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:40:54.351] [warn] The resource https://discord.com/assets/e52f0cba712e2fb4.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:40:54.351] [warn] The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:40:54.763] [info] [MessageActionCreators] Fetching messages for 1414652878991134750 between undefined and 1467220224880283762. jump=undefined [2026-02-04 14:40:58.755] [info] [MessageActionCreators] Fetching messages for 1414652878991134750 between undefined and 1466860227558117399. jump=undefined [2026-02-04 14:41:00.446] [info] [MessageActionCreators] Fetching messages for 1414652878991134750 between undefined and 1466660152508682396. jump=undefined [2026-02-04 14:41:00.764] [info] [MessageActionCreators] Fetched 50 messages for 1414652878991134750 isBefore:true isAfter:false [2026-02-04 14:41:05.165] [info] [MessageActionCreators] Fetching messages for 1414652878991134750 between undefined and 1466341186821165229. jump=undefined [2026-02-04 14:41:05.434] [info] [MessageActionCreators] Fetched 50 messages for 1414652878991134750 isBefore:true isAfter:false [2026-02-04 14:41:07.216] [info] [MessageActionCreators] Fetching messages for 1414652878991134750 between undefined and 1465822792816656660. jump=undefined [2026-02-04 14:41:07.589] [info] [MessageActionCreators] Fetched 50 messages for 1414652878991134750 isBefore:true isAfter:false [2026-02-04 14:41:11.273] [warn] The resource https://discord.com/assets/189422196a4f8b53.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:11.274] [warn] The resource https://discord.com/assets/ce3b8055f5114434.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:11.274] [warn] The resource https://discord.com/assets/cb2006dbced0e246.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:11.274] [warn] The resource https://discord.com/assets/7a6a566c2e88a35d.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:11.274] [warn] The resource https://discord.com/assets/e52f0cba712e2fb4.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:11.275] [warn] The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:36.090] [warn] The resource https://discord.com/assets/189422196a4f8b53.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:36.091] [warn] The resource https://discord.com/assets/ce3b8055f5114434.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:36.091] [warn] The resource https://discord.com/assets/cb2006dbced0e246.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:36.091] [warn] The resource https://discord.com/assets/7a6a566c2e88a35d.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:36.091] [warn] The resource https://discord.com/assets/e52f0cba712e2fb4.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:36.091] [warn] The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:40.085] [info] [WindowVisibilityVideoManager] Incoming video enabled changed, incomingVideoEnabled = false [2026-02-04 14:41:55.596] [info] [WindowVisibilityVideoManager] Incoming video enabled changed, incomingVideoEnabled = true [2026-02-04 14:41:58.793] [warn] The resource https://discord.com/assets/189422196a4f8b53.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:58.794] [warn] The resource https://discord.com/assets/ce3b8055f5114434.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:58.794] [warn] The resource https://discord.com/assets/cb2006dbced0e246.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:58.794] [warn] The resource https://discord.com/assets/7a6a566c2e88a35d.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:58.794] [warn] The resource https://discord.com/assets/e52f0cba712e2fb4.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:58.794] [warn] The resource https://discord.com/assets/dd24010f3cf7def7.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally. [2026-02-04 14:41:59.476] [info] [MessageActionCreators] Fetching messages for 14146528789911347) id 1vcXiY-00000005RuZ-1MKp for hi@josie.lol; Sun, 04 Jan 2026 23:41:02 +0000 Received: from localhost by witcher.mxrouting.net with SpamAssassin (version 3.4.6); Sun, 04 Jan 2026 23:41:02 +0000 From: "Mr. Floyd W. Brown" To: hi@josie.lol Subject: *****SPAM***** Business Loan/Project Funding Date: 5 Jan 2026 00:40:57 -0800 Message-Id: <20260105004057.F92E67242F69756E@gmail.com> X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on witcher.mxrouting.net X-Spam-Flag: YES X-Spam-Level: ****************** X-Spam-Status: Yes, score=18.3 required=15.0 tests=DATE_IN_FUTURE_06_12, DKIM_ADSP_CUSTOM_MED,FIN_FREE,FORGED_GMAIL_RCVD,FREEMAIL_FROM, FREEMAIL_REPLYTO,FREEMAIL_REPLYTO_END_DIGIT,HDRS_MISSP, HK_NAME_FM_MR_MRS,HTML_MESSAGE,MIME_HTML_ONLY,NML_ADSP_CUSTOM_MED, RCVD_IN_DNSWL_BLOCKED,RCVD_IN_MSPIKE_BL,RCVD_IN_MSPIKE_L5,RCVD_IN_PSBL, SPOOFED_FREEMAIL_NO_RDNS,SPOOFED_FREEM_REPTO autolearn=disabled version=3.4.6 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----------=_695AFA8E.FFC4E3A3" This is a multi-part message in MIME format. ------------=_695AFA8E.FFC4E3A3 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Spam detection software, running on the system "witcher.mxrouting.net", has performed the tests listed below against this email. Information: https://mxroutedocs.com/directadmin/spamfilters/ --- Content analysis details: (18.3 points) --- pts rule name description ---- ---------------------- ----------------------------------------- 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [77.83.39.92 listed in psbl.surriel.com] 0.0 RCVD_IN_DNSWL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to DNSWL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#DnsBlocklists-dnsbl-block for more information. [77.83.39.92 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_L5 RBL: Very bad reputation (-5) [77.83.39.92 listed in bl.mailspike.net] 0.2 FREEMAIL_REPLYTO_END_DIGIT Reply-To freemail username ends in digit [yling12345600[at]gmail.com] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider [yling1234560[at]gmail.com] 3.0 FORGED_GMAIL_RCVD 'From' gmail.com does not match 'Received' headers 0.0 DATE_IN_FUTURE_06_12 Date: is 6 to 12 hours after Received: date 0.0 DKIM_ADSP_CUSTOM_MED No valid author signature, adsp_override is CUSTOM_MED 0.1 FIN_FREE BODY: Freedom of a financial nature 1.5 HTML_MESSAGE BODY: HTML included in message 2.0 MIME_HTML_ONLY BODY: Message only has text/html MIME parts 1.5 HK_NAME_FM_MR_MRS No description available. 0.0 RCVD_IN_MSPIKE_BL Mailspike blocklisted 2.5 HDRS_MISSP Misspaced headers 0.0 SPOOFED_FREEMAIL_NO_RDNS From SPOOFED_FREEMAIL and no rDNS 1.0 FREEMAIL_REPLYTO Reply-To/From or Reply-To/body contain different freemails 1.2 NML_ADSP_CUSTOM_MED ADSP custom_med hit, and not from a mailing list 2.5 SPOOFED_FREEM_REPTO Forged freemail sender with freemail reply-to The original message was not completely plain text, and may be unsafe to open with some email clients; in particular, it may contain a virus, or confirm that your address can receive spam. If you wish to view it, it may be safer to save it to a file and open it with an editor. ------------=_695AFA8E.FFC4E3A3 Content-Type: message/rfc822; x-spam-type=original Content-Description: original message before SpamAssassin Content-Disposition: attachment Content-Transfer-Encoding: 8bit Received: from [77.83.39.92] by witcher.mxrouting.net with esmtp (Exim 4.98) (envelope-from ) id 1vcXiX-00000005Rbv-3zMw for hi@josie.lol; Sun, 04 Jan 2026 23:41:02 +0000 Reply-To: yling12345600@gmail.com From: "Mr. Floyd W. Brown" To: hi@josie.lol Date: 5 Jan 2026 00:40:57 -0800 Message-ID: <20260105004057.F92E67242F69756E@gmail.com> MIME-Version: 1.0 Content-Type: text/html Content-Transfer-Encoding: quoted-printable ReverseDNS: No reverse DNS for mailserver at 77.83.39.92, +100 Spam score SPFCheck: Soft Fail, 20 Spam score X-Old-Subject:Business Loan/Project Funding Subject:*****SPAM***** Business Loan/Project Funding SpamTally: Final spam score: 140

Greetings ,


I hope you are doing well today? Please do accept= my unsolicited message in good faith because I believe one can only achiev= e financial freedom when we create multiple streams of income. Are you an e= ntrepreneur/business owner / a consultant Broker or chief executive officer= seeking for capital for your business growth or expansion?

I represent clientele of high profile investors/lenders that are currently = expanding their Loan Funding portfolio’s outside of the gulf region a= t a good interest rate ROI per annum for a period of 5 to 25 years or more = (Pure Loan/Funding) in any viable and lucrative business v= entures, hence any sector that is mainly interested in debt financing is ok= =2E

The investors are ready to fund your company or any of your current project= s on direct loan financing with easy repayment terms. The terms are very fl= exible and interesting. The establishment of this funding shall be applicab= le to the international laws, we also pay 1% Broker finding fee or to any i= ndividual who directs clients to us for funding.

If you are intereste= d and have good investments or project plan that needs funding (Pur= e Loan/Funding) kindly revert back to me for possible business cooperation via my official= Email: yling12345600@gmail.com<= /a>

Best Regards,
Mr. Floyd W. Brown
Investment Consultant Bro= ker UK.

------------=_695AFA8E.FFC4E3A3-- From - Tue Jan 06 15:32:35 2026 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 >From stable+bounces-204987-hi=josie.lol@vger.kernel.org Tue Jan 06 01:34:01 2026 Return-path: Envelope-to: hi@josie.lol Delivery-date: Tue, 06 Jan 2026 01:34:01 +0000 Received: from tor.lore.kernel.org ([172.105.105.114]) by witcher.mxrouting.net with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1vcvxQ-00000003pZl-2Yn0 for hi@josie.lol; Tue, 06 Jan 2026 01:34:00 +0000 Received: from smtp.subspace.kernel.org (conduit.subspace.kernel.org [100.90.174.1]) by tor.lore.kernel.org (Postfix) with ESMTP id F2EA030339A8 for ; Tue, 6 Jan 2026 01:33:56 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id AAD5E2F5313; Tue, 6 Jan 2026 01:33:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="mwCvUrW6" X-Original-To: stable@vger.kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 CEF412F3609; Tue, 6 Jan 2026 01:33:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30