ngutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vgq2Z-00049F-IM; Fri, 16 Jan 2026 21:03:27 +0100 Received: from moin.white.stw.pengutronix.de ([2a0a:edc0:0:b01:1d::7b] helo=bjornoya.blackshift.org) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vgq2a-000yMZ-01; Fri, 16 Jan 2026 21:03:27 +0100 Received: from blackshift.org (p54b152ce.dip0.t-ipconnect.de [84.177.82.206]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) (Authenticated sender: mkl-all@blackshift.org) by smtp.blackshift.org (Postfix) with ESMTPSA id 1D9814CEF72; Fri, 16 Jan 2026 20:03:27 +0000 (UTC) From: Marc Kleine-Budde To: netdev@vger.kernel.org Cc: davem@davemloft.net, kuba@kernel.org, linux-can@vger.kernel.org, kernel@pengutronix.de, Marc Kleine-Budde , stable@vger.kernel.org Subject: [PATCH net 5/7] can: kvaser_usb: kvaser_usb_read_bulk_callback(): fix URB memory leak Date: Fri, 16 Jan 2026 20:55:51 +0100 Message-ID: <20260116200323.366877-6-mkl@pengutronix.de> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260116200323.366877-1-mkl@pengutronix.de> References: <20260116200323.366877-1-mkl@pengutronix.de> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: mkl@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: stable@vger.kernel.org X-Spam-Score: 0.5 (/) 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.5 points) --- pts rule name description ---- ---------------------- ----------------------------------------- 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. [104.64.211.4 listed in list.dnswl.org] 1.5 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager SpamTally: Final spam score: 5 Fix similar memory leak as in commit 7352e1d5932a ("can: gs_usb: gs_usb_receive_bulk_callback(): fix URB memory leak"). In kvaser_usb_set_{,data_}bittiming() -> kvaser_usb_setup_rx_urbs(), the URBs for USB-in transfers are allocated, added to the dev->rx_submitted anchor and submitted. In the complete callback kvaser_usb_read_bulk_callback(), the URBs are processed and resubmitted. In kvaser_usb_remove_interfaces() the URBs are freed by calling usb_kill_anchored_urbs(&dev->rx_submitted). However, this does not take into account that the USB framework unanchors the URB before the complete function is called. This means that once an in-URB has been completed, it is no longer anchored and is ultimately not released in usb_kill_anchored_urbs(). Fix the memory leak by anchoring the URB in the kvaser_usb_read_bulk_callback() to the dev->rx_submitted anchor. Fixes: 080f40a6fa28 ("can: kvaser_usb: Add support for Kvaser CAN/USB devices") Cc: stable@vger.kernel.org Link: https://patch.msgid.link/20260116-can_usb-fix-memory-leak-v2-3-4b8cb2915571@pengutronix.de Signed-off-by: Marc Kleine-Budde --- drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c b/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c index 62701ec34272..d0a2a2a33c1c 100644 --- a/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c +++ b/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c @@ -361,7 +361,14 @@ static void kvaser_usb_read_bulk_callback(struct urb *urb) urb->transfer_buffer, KVASER_USB_RX_BUFFER_SIZE, kvaser_usb_read_bulk_callback, dev); + usb_anchor_urb(urb, &dev->rx_submitted); + err = usb_submit_urb(urb, GFP_ATOMIC); + if (!err) + return; + + usb_unanchor_urb(urb); + if (err == -ENODEV) { for (i = 0; i < dev->nchannels; i++) { struct kvaser_usb_net_priv *priv; @@ -372,7 +379,7 @@ static void kvaser_usb_read_bulk_callback(struct urb *urb) netif_device_detach(priv->netdev); } - } else if (err) { + } else { dev_err(&dev->intf->dev, "Failed resubmitting read bulk urb: %d\n", err); } -- 2.51.0 From - Fri Jan 16 20:05:32 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 AFqPOQiaammgLRcAYBR5ng (envelope-from ) for ; Fri, 16 Jan 2026 20:05:28 +0000 Return-path: Envelope-to: hi@josie.lol Delivery-date: Fri, 16 Jan 2026 20:05:29 +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 1vgq4W-00000006nGY-2sCs for hi@josie.lol; Fri, 16 Jan 2026 20:05:28 +0000 Received: from smtp.subspace.kernel.org (conduit.subspace.kernel.org [100.90.174.1]) by sea.lore.kernel.org (Postfix) with ESMTP id 113CE312007E for ; Fri, 16 Jan 2026 20:03:43 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id B31453A35D4; Fri, 16 Jan 2026 20:03:38 +0000 (UTC) X-Original-To: stable@vger.kernel.org Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (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 CAA9434D4FB for ; Fri, 16 Jan 2026 20:03:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768593818; cv=none; b=YQVwSSnCLQkErwzbRaIqbK4C9DpRV2lxU7/dwQVx5KgdsEWzx3Qa+8NYwVsICzRb/HVp5PR5oizdm3loFs4XN8kV1t8y1/6EV++RVQFw2l56D799Jc1yv4vJa2oVaPnRmu88/1hZOw4oVfLFQeFOWZdIfJBGiEmMW60lFdHMZ+Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768593818; c=relaxed/simple; bh=2xCc7fSDM8ej6zjBvdm3Iv1VD4nDoGmNsfsXLWdgB18=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GPVUreiP3FcJwIlefzmgai3CvVwqIC7VGZMAS0hWby2AS0pHZoZYzCxQ1p5wMHAXYoayS87oBjfjEu4Ens4zBYTbVFkAMf7tWA1M3vhfshdKnbYrEp3r0eV6jTg/pP8JIzwd73Xs5ppd1JglTW3omsB7ZPwC6czmVAUdGJHzc0w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=ion=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256); Fri, 16 Jan 2026 19:38:45 +0000 X-Original-To: josie@linux.com X-Forward-Email-Sender: rfc822; bounce+0c91f6.074921-josie=linux.com@mail.notion.so, outgoing4.mail.notion.so, 143.55.229.30 X-Forward-Email-Version: 2.2.6 X-Forward-Email-Website: https://forwardemail.net X-Complaints-To: abuse@forwardemail.net X-Report-Abuse: abuse@forwardemail.net X-Report-Abuse-To: abuse@forwardemail.net DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mail.notion.so; q=dns/txt; s=pic; t=1768592325; x=1768599525; h=Message-Id: To: To: From: From: Subject: Subject: Content-Type: Mime-Version: Date: Sender: Sender: List-Unsubscribe: List-Unsubscribe-Post; bh=zqi4Cq3jJRzaiMyT/CKv5iz1FLMOsa7yrD8w9BnhE2g=; b=DDf0lec/Me0K/tJRg1FdEIjuhGp3YUmFN3rxhMsafApEByrcce5OOMwHd0r+sAsnuLRKYqlQQfWod8SZFpg0F+LfXitJUtRRG78V7lBuHRMgQgQ4AJuts1A8iXx7NzghghwR0efLpHG9uPw8cOQ54fa/Ncegj0SIrA5gfkWYr/20HsieBs+NS6XHKbpUuLvbQ3nQFg10/Da/EwcZuhkiS3Qolboz8uxscNlO+Tfyu307Uu+3ckstAl43EA5nbVN3ddVw1VTCRIRX3cdlE5ZwRlPqJxuqM1gIu3MvBzoyC0MRwuT6L2Xrb6y+Rjm42g1142LCw0B40EdguN9GOq5h7Q== List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: , Received: by f39faa7183f5d05a1ff071224c5756d814e3a8e8bd1104d84e5a7dd8f9a725d1 with HTTP id 696a93c5b7a6b47810fb2881; Fri, 16 Jan 2026 19:38:45 GMT Sender: notify@mail.notion.so Date: Fri, 16 Jan 2026 19:38:45 +0000 Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="615f3b85fad99ae9b9acc9eee5f5ebd5fbbdf2e337901af6feaacb82f8d1" Subject: =?UTF-8?q?Moamen_Zakaria_mentioned_you_in_=F0=9F=A7=BA_Batcher_Design_Doc?= =?UTF-8?q?ument?= From: Notion Team To: josie@linux.com Message-Id: <20260116193845.0e7a5dba81e8b65a@mail.notion.so> X-DKIM: signer='forwardemail.net' status='pass' reason='' DKIMCheck: Server passes DKIM test, 0 Spam score X-DKIM: signer='mail.notion.so' status='pass' reason='' X-Spam-Score: 2.9 (++) 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: (2.9 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: notion.so] 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. [104.248.224.170 listed in list.dnswl.org] 1.5 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 1.5 HTML_MESSAGE BODY: HTML included in message 0.1 MIME_HTML_MOSTLY BODY: Multipart message mostly text/html MIME -0.1 DKIM_VALID_EF Message has a valid DKIM or DK signature from envelope-from domain -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature SpamTally: Final spam score: 29 --615f3b85fad99ae9b9acc9eee5f5ebd5fbbdf2e337901af6feaacb82f8d1 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ascii @josie@linux.com, Reviewer --615f3b85fad99ae9b9acc9eee5f5ebd5fbbdf2e337901af6feaacb82f8d1 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
Moamen Zakaria mentioned you in
=F0=9F=A7=BA
Batcher Des= ign Document
=
Jan 16, 2026, 7:38 PM
@j= osie@linux.com=E2=80=8B
Reviewer
=
Go to page
Notion
<= div style=3D"font-style: normal; font-weight: 400; font-size: 12px; line-he= ight: 15px; color: #ACABA9; padding-top: 3px">Notion.so, the conn= ected workspace
for docs, projects, and wikis.
3D"" =20 --615f3b85fad99ae9b9acc9eee5f5ebd5fbbdf2e337901af6feaacb82f8d1-- From - Fri Jan 16 19:39:00 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 iHckE9KTaml2WA0AYBR5ng (envelope-from ) for ; Fri, 16 Jan 2026 19:38:58 +0000 Return-path: Envelope-to: hi@josie.lol Delivery-date: Fri, 16 Jan 2026 19:38:58 +0000 Received: from mx2.forwardemail.net ([104.248.224.170]) by witcher.mxrouting.net with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1vgper-000000062Ob-3pND for hi@josie.lol; Fri, 16 Jan 2026 19:38:58 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=forwardemail.net; h=Message-Id: To: From: Subject: Content-Type: Mime-Version: Date: Sender: List-Unsubscribe; q=dns/txt; s=default; t=1768592337; bh=HQVtXN5r8xsJG24kflqx+AZ1XYSRjIRCQzMLgZL/Jqg=; b=QxhLbKpxbKWw7Jw0pmkom2m5U3VCBSW1jfwAiPnULbhbf8FMPtuZqYnq/Dq5YViSlPyPonCmJ 8oOFzOu0a885HJemkTQwlUq/Zsx3mWyYJ/ChvSEaNzGZ2wERDsuTjk7ZYR+P2W1qHZZUpxZGNUU iDrQoRfo4nH4X/qjWR6Se1s= ARC-Seal: i=1; a=rsa-sha256; t=1768592337; cv=none; d=forwardemail.net; s=default; b=OJ8GExYW968kZ7gXkftYwZbYSpH74BqJmdeQTElocl6nsFZPLluVdA9FglVrUnJLAtAZGh5Db gNQdaCDj4fBhhSrOhj6cQu+GE1+Iwj7t58yg939DbpiAsigivvP/PHvScQ9ltle8YGy+LfbEdZx Yw5PF7xHoKD6/gTHl5hQnwo= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=forwardemail.net; h=Message-Id: To: From: Subject: Content-Type: Mime-Version: Date: Sender: List-Unsubscribe; q=dns/txt; s=default; t=1768592337; bh=HQVtXN5r8xsJG24kflqx+AZ1XYSRjIRCQzMLgZL/Jqg=; b=p+SMq3eHcbzeQIxuD71IvU8H2cunatW8Wgcoe12+r7H+/f06ZGrauDC3brLGZs96NkP3yAnv1 qLMhtbtsEMT1i6owc3QnP5tqkSxJNZuJrq8lTqxr7arvejsRTAr+JsCAN1uIWDdJtd83V3FALys QDUw/PXk0tQ4ym2x1KfbMvw= ARC-Authentication-Results: i=1; mx2.forwardemail.net; dkim=pass header.i=@mail.notion.so header.s=pic header.a=rsa-sha256 header.b=rytFTTqm; spf=pass (mx2.forwardemail.net: domain of bounce+0c91f6.074921-josie=linux.com@mail.notion.so designates 143.55.229.31 as permitted sender) smtp.mailfrom="bounce+0c91f6.074921-josie=linux.com@mail.notion.so" smtp.helo=outgoing5.mail.notion.so; dmarc=pass (p=QUARANTINE arc=none) header.from=notion.so header.d=mail.notion.so; bimi=pass policy.authority=none policy.authority-uri="https://vmc.digicert.com/9e60a453-cc53-4a64-abdb-92eae1b99635.pem" header.selector=default header.d=notion.so Received: from outgoing5.mail.notion.so ([143.55.229.31] outgoing5.mail.notion.so) by mx2.forwardemail.net (Forward Email) with ESMTPS for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256); Fri, 16 Jan 2026 19:38:53 +0000 X-Original-To: josie@linux.com X-Forward-Email-Sender: rfc822; bounce+0c91f6.074921-josie=linux.com@mail.notion.so, outgoing5.mail.notion.so, 143.55.229.31 X-Forward-Email-Version: 2.2.6 X-Forward-Email-Website: https://forwardemail.net X-Complaints-To: abuse@forwardemail.net X-Report-Abuse: abuse@forwardemail.net X-Report-Abuse-To: abuse@forwardemail.net DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mail.notion.so; q=dns/txt; s=pic; t=1768592333; x=1768599533; h=Message-Id: To: To: From: From: Subject: Subject: Content-Type: Mime-Version: Date: Sender: Sender: List-Unsubscribe: List-Unsubscribe-Post; bh=HQVtXN5r8xsJG24kflqx+AZ1XYSRjIRCQzMLgZL/Jqg=; b=rytFTTqmaY0xl+7m5bGpeFPawyirL16ktd1MeSsAy8HORl7nuZb80pZHGHOxtmvaoGxC9iqDN+jL5WhRX7XDm8FlQAWRqcf+290pGhrLLd9mepPqo7VDsVfV90s4tU6FQWxHjhW7QBIfE0uweQEPMMSZcfQ3k+U4xbncP8sZSzn9OVMGbeG5Wul97961lFr0EbSZD9xf525XvdQl0I7rqqfJkv+P2ANfQsF6zqPaJhWCWg5VFksTDIgy/ierNuk4FswXDaDQjBO4EzAcl/KJt9/uSdzobJ9a25Td1PxI82vmlevKcCONzhEq/zL5oZECk0/6jj85cLxZqU/S4V+erg== List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: , Received: by 3402d594e5765fe363e1df587c88307488eaba98e5eed972cb2633f3ffef81c7 with HTTP id 696a93cd35ccbaf9c1657f4c; Fri, 16 Jan 2026 19:38:53 GMT Sender: notify@mail.notion.so Date: Fri, 16 Jan 2026 19:38:53 +0000 Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="bb163b97bf3067da80c60ea5cbd081e12e79529c70e53b4a3b9c20484131" Subject: =?UTF-8?q?Moamen_Zakaria_mentioned_you_in_=F0=9F=A7=BA_Batcher_Design_Doc?= =?UTF-8?q?ument?= From: Notion Team To: josie@linux.com Message-Id: <20260116193853.d51478dc3c4679a5@mail.notion.so> X-DKIM: signer='forwardemail.net' status='pass' reason='' DKIMCheck: Server passes DKIM test, 0 Spam score X-DKIM: signer='mail.notion.so' status='pass' reason='' X-Spam-Score: 2.9 (++) 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: (2.9 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: forwardemail.net] 1.5 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 1.5 HTML_MESSAGE BODY: HTML included in message 0.1 MIME_HTML_MOSTLY BODY: Multipart message mostly text/html MIME -0.1 DKIM_VALID_EF Message has a valid DKIM or DK signature from envelope-from domain -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature SpamTally: Final spam score: 29 --bb163b97bf3067da80c60ea5cbd081e12e79529c70e53b4a3b9c20484131 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ascii @josie@linux.com, Reviewer --bb163b97bf3067da80c60ea5cbd081e12e79529c70e53b4a3b9c20484131 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable
Moamen Zakaria mentioned you in
=F0=9F=A7=BA
Batcher De= sign Document
Jan 16, 2026, 7:38 PM
<= a href=3D"https://mg.mail.notion.so/c/eJxMkM2O4yAQhJ8Gbomg-fWBw46sHPcVrAbaG= 1aJbRlIdt5-5Zlos8euKpXq6xyE0wNITkE6680ASilOdyy3qfeSA3MfzI38GlKUSaC2s7VDdrO0= KTqBccDstbMq8RJAgBVSWjkob9Q5G6mdz0klbd2Ahmlx9J6XtZV1OdeV38K1ta0y9YPBhcHl-Xy= -XQaXD2zpSvtppFp-LadxTf1OSzsBQfTWGkczeWFnjBpmSCJHGmIix9RlYWr8xth6vTKwh4CplU= dpn9PRUtblJb-uiXJpDOz2qEyNgoFKOmePZIxXpAdENDbPOCtvzaw8Rn6nhhkbfr0JoG6YaCqZA= XwxQfL2PVT6jF4LIYRKg4wCXDqCbuR7-L3WQkyLW1n6n3Na77yF7_ntcyOmxkpL_rm2MpeEx9h_= fu3xFemV9tOLhTLvS-2xpr1ECgzMf-fU9xsDwx8B_gYAAP__3DuhjA" style=3D"display: b= lock; color: inherit; text-decoration: none; cursor: pointer; margin-bottom= : 12px" class=3D"notion-email-button-hover">
@josie@linux.com=E2=80=8B
Reviewer
<= /div>
<= /table>
Go to page
Notion=
Notion.so, = the connected workspace
for docs, projects, and wikis.
3D"" =20 --bb163b97bf3067da80c60ea5cbd081e12e79529c70e53b4a3b9c20484131-- From - Fri Jan 16 20:05:39 2026 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Return-Pa‚©solutionsÜ