n@kernel.org>, kernel test robot , Takashi Iwai , Sasha Levin Subject: [PATCH 6.19 842/844] ALSA: pcm: Revert bufs move in snd_pcm_xfern_frames_ioctl() Date: Sat, 28 Feb 2026 12:32:35 -0500 Message-ID: <20260228173244.1509663-843-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit X-DKIM: signer='kernel.org' status='pass' reason='' DKIMCheck: Server passes DKIM test, 0 Spam score X-Spam-Score: -1.2 (-) X-Spam-Report: Spam detection software, running on the system "witcher.mxrouting.net", has performed the tests listed below against this email. Information: https://docs.mxroute.com/docs/expert-spam-filtering.html --- Content analysis details: (-1.2 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: msgid.link] 0.0 URIBL_DBL_BLOCKED_OPENDNS ADMINISTRATOR NOTICE: The query to dbl.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [URIs: msgid.link] 0.0 RCVD_IN_ZEN_BLOCKED_OPENDNS RBL: ADMINISTRATOR NOTICE: The query to zen.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [172.234.253.10 listed in zen.spamhaus.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] 0.0 URIBL_ZEN_BLOCKED_OPENDNS ADMINISTRATOR NOTICE: The query to zen.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [URIs: msgid.link] 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_EF Message has a valid DKIM or DK signature from envelope-from 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: -11 From: Nathan Chancellor [ Upstream commit 0585c53b21541cd6b17ad5ab41b371a0d52e358c ] When building with clang older than 17 targeting architectures that use asm goto for their get_user() and put_user(), such as arm64, after commit f3d233daf011 ("ALSA: pcm: Relax __free() variable declarations"), there are bogus errors around skipping over a variable declared with the cleanup attribute: sound/core/pcm_native.c:3308:6: error: cannot jump from this asm goto statement to one of its possible targets if (put_user(result, &_xfern->result)) ^ ... arch/arm64/include/asm/uaccess.h:298:2: note: expanded from macro '__put_mem_asm' asm goto( ^ sound/core/pcm_native.c:3295:6: note: possible target of asm goto statement if (put_user(0, &_xfern->result)) ^ ... sound/core/pcm_native.c:3300:8: note: jump exits scope of variable with __attribute__((cleanup)) void *bufs __free(kfree) = ^ clang-17 fixed a bug in clang's jump scope checker [1] where all labels in a function were checked as valid targets for all asm goto instances in a function, regardless of whether they were actual targets in a paricular asm goto's provided list of labels. To workaround this, revert the change done to snd_pcm_xfern_frames_ioctl() by commit f3d233daf011 ("ALSA: pcm: Relax __free() variable declarations") to avoid a variable declared with cleanup from existing between multiple uses of asm goto. There are no other uses of cleanup in this function so there should be low risk from moving this variable back to the top of the function. Link: https://github.com/ClangBuiltLinux/linux/issues/1886 [1] Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202512190802.i4Jzbcsl-lkp@intel.com/ Signed-off-by: Nathan Chancellor Link: https://patch.msgid.link/20260106-pcm_native-revert-var-move-free-for-old-clang-v1-1-06a03693423d@kernel.org Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/core/pcm_native.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index 844ee1b4d286f..0a358d94b17c6 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c @@ -3291,6 +3291,7 @@ static int snd_pcm_xfern_frames_ioctl(struct snd_pcm_substream *substream, { struct snd_xfern xfern; struct snd_pcm_runtime *runtime = substream->runtime; + void *bufs __free(kfree) = NULL; snd_pcm_sframes_t result; if (runtime->state == SNDRV_PCM_STATE_OPEN) @@ -3302,8 +3303,7 @@ static int snd_pcm_xfern_frames_ioctl(struct snd_pcm_substream *substream, if (copy_from_user(&xfern, _xfern, sizeof(xfern))) return -EFAULT; - void *bufs __free(kfree) = - memdup_array_user(xfern.bufs, runtime->channels, sizeof(void *)); + bufs = memdup_array_user(xfern.bufs, runtime->channels, sizeof(void *)); if (IS_ERR(bufs)) return PTR_ERR(bufs); if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) -- 2.51.0 From - Sat Feb 28 19:50:39 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 mDZNFgpHo2ktrAAAYBR5ng (envelope-from ) for ; Sat, 28 Feb 2026 19:50:34 +0000 Return-path: Envelope-to: hi@josie.lol Delivery-date: Sat, 28 Feb 2026 19:50:34 +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 1vwQKf-00000000GNL-49ic for hi@josie.lol; Sat, 28 Feb 2026 19:50:34 +0000 Received: from smtp.subspace.kernel.org (conduit.subspace.kernel.org [100.90.174.1]) by tor.lore.kernel.org (Postfix) with ESMTP id AE81B328B549 for ; Sat, 28 Feb 2026 19:32:58 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 8A70E41B91D; Sat, 28 Feb 2026 17:45:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="FHMgNLSc" 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 6817241B918; Sat, 28 Feb 2026 17:45:41 +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=1772300741; cv=none; b=bsf5tETdw+yPmOuWX5epiGS4M0vHD/pqZiA4JllUKLF1Dazn4O5soLDobUheqT204eofSkPug3qUmwtF64a7m+geWOr8VQolwE4zvx68R7feBLZ+hsxPydX10dFAjResYUvzK91/luaUqQWa25jGI1I00i5nwLvzjYals9Yt7do= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300741; c=relaxed/simple; bh=/nD649T2xEp+kK4gCXKPYPLpFpSVvdLGdcEntA0McGI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=hqWWYk19i8hJhvn9kOAP+JFZzbHDTaIgTY4dleam3LfdLCWUPNoraJBJQbWNMMKRveeO7D/KHUuLZ3Tb+ju0YKFv/4OLZaHvHecX/3QeFAVFEbn1NaCi1c3vReZdVVxXhUbmDbFdsyqubMmLTYbJfnm6QAWX/83bbNADalrk0Pc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=FHMgNLSc; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8BF6CC2BC9E; Sat, 28 Feb 2026 17:45:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772300741; bh=/nD649T2xEp+kK4gCXKPYPLpFpSVvdLGdcEntA0McGI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FHMgNLSc+E7FCf2AQf9FJ6Tz+bdJlxRrLU7bdgAn7EnVmMIorxUgKReYSg/r6rWy5 mbClFUpq3v3GvFy05wgq0YDn3iK9qh7+PeWkN8k+kg+adBqoFE0uT7zDIPSX5vfuJv gv2sXTO+hQ0q/MP1pXJ/9jqrsbZSk//pyiqptf7R4KksFvtPplqDH3MTrOv8ODSlLl aeLotYRxmAjUgOiZTiO9brChOOS9Rg2GxTHjrvkETMwkBNXJWERMKLCvC4S5ORqMKZ EK/58PIMeV6+MU1/e6QEiUihOeaUHE2VDcRA+YO3a2ohmvQPEQ3r/cijUwTYPkbs4S tEMBrVjAsOY+Q== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Tiezhu Yang , Huacai Chen , Sasha Levin Subject: [PATCH 6.19 776/844] LoongArch: Remove some extern variables in source files Date: Sat, 28 Feb 2026 12:31:29 -0500 Message-ID: <20260228173244.1509663-777-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit X-DKIM: signer='kernel.org' status='pass' reason='' DKIMCheck: Server passes DKIM test, 0 Spam score X-Spam-Score: -1.2 (-) X-Spam-Report: Spam detection software, running on the system "witcher.mxrouting.net", has performed the tests listed below against this email. Information: https://docs.mxroute.com/docs/expert-spam-filtering.html --- Content analysis details: (-1.2 points) --- pts rule name description ---- ---------------------- ----------------------------------------- 0.0 RCVD_IN_ZEN_BLOCKED_OPENDNS RBL: ADMINISTRATOR NOTICE: The query to zen.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [172.105.105.114 listed in zen.spamhaus.org] 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_EF Message has a valid DKIM or DK signature from envelope-from 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: -11 From: Tiezhu Yang [ Upstream commit 0e6f596d6ac635e80bb265d587b2287ef8fa1cd6 ] There are declarations of the variable "eentry", "pcpu_handlers[]" and "exception_handlers[]" in asm/setup.h, the source files already include this header file directly or indirectly, so no need to declare them in the source files, just remove the code. Cc: stable@vger.kernel.org Signed-off-by: Tiezhu Yang Signed-off-by: Huacai Chen Signed-off-by: Sasha Levin --- arch/loongarch/kernel/unwind_orc.c | 2 -- arch/loongarch/kernel/unwind_prologue.c | 4 ---- arch/loongarch/mm/tlb.c | 1 - 3 files changed, 7 deletions(-) diff --git a/arch/loongarch/kernel/unwind_orc.c b/arch/loongarch/kernel/unwind_orc.c index 11ba3e4ac9eee..9cfb5bb1991f2 100644 --- a/arch/loongarch/kernel/unwind_orc.c +++ b/arch/loongarch/kernel/unwind_orc.c @@ -350,8 +350,6 @@ EXPORT_SYMBOL_GPL(unwind_start); static inline unsigned long bt_address(unsigned long ra) { - extern unsigned long eentry; - #if defined(CONFIG_NUMA) && !defined(CONFIG_PREEMPT_RT) int cpu; int vec_sz = sizeof(exception_handlers); diff --git a/arch/loongarch/kernel/unwind_prologue.c b/arch/loongarch/kernel/unwind_prologue.c index ee1c29686ab05..da07acad7973a 100644 --- a/arch/loongarch/kernel/unwind_prologue.c +++ b/arch/loongarch/kernel/unwind_prologue.c @@ -23,10 +23,6 @@ extern const int unwind_hint_lasx; extern const int unwind_hint_lbt; extern const int unwind_hint_ri; extern const int unwind_hint_watch; -extern unsigned long eentry; -#ifdef CONFIG_NUMA -extern unsigned long pcpu_handlers[NR_CPUS]; -#endif static inline bool scan_handlers(unsigned long entry_offset) { diff --git a/arch/loongarch/mm/tlb.c b/arch/loongarch/mm/tlb.c index 6a3c91b9cacdc..4014c44695878 100644 --- a/arch/loongarch/mm/tlb.c +++ b/arch/loongarch/mm/tlb.c @@ -262,7 +262,6 @@ static void output_pgtable_bits_defines(void) #ifdef CONFIG_NUMA unsigned long pcpu_handlers[NR_CPUS]; #endif -extern long exception_handlers[VECSIZE * 128 / sizeof(long)]; static void setup_tlb_handler(int cpu) { -- 2.51.0 From - Sat Feb 28 19:50:47 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 WGlEMRFHo2nZaT8AYBR5ng (envelope-from ) for ; Sat, 28 Feb 2026 19:50:41 +0000 Return-path: Envelope-to: hi@josie.lol Delivery-date: Sat, 28 Feb 2026 19:50:42 +0000 Received: from sto.lore.kernel.org ([172.232.135.74]) by witcher.mxrouting.net with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1vwQKn-00000000GXN-0Pdy for hi@josie.lol; Sat, 28 Feb 2026 19:50:41 +0000 Received: from smtp.subspace.kernel.org (conduit.subspace.kernel.org [100.90.174.1]) by sto.lore.kernel.org (Postfix) with ESMTP id AE354311E977 for ; Sat, 28 Feb 2026 19:33:14 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 5452241C0CE; Sat, 28 Feb 2026 17:45:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="EGS12iWP" 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 2DC4041C0C7; Sat, 28 Feb 2026 17:45:42 +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=1772300743; cv=none; b=K7OgI4P+g9BejradEObPsfF1gkEFN2Lv0JQ43QKPFHeaSKcnclbLdj1WpEFN5qQB9d+3ZWZoF8LANOFARia8heJ+OZz1YtkyYOWxNAumuxRvDnzrBt5YhTgA6dEc9BoPX81lRHDzOU8oIn84ZdM6eBzmMEOoh+RqBXwShKf4HPw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772300743; c=relaxed/simple; bh=n11fJxM1zdO1l3kKSRQWSOUtzlFHtSJ7rvoF1B0cTWg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nvXRzNEOcRGM8ppEvGntqHfCOa/mccXwBy9mf/5rwMmwQeJJxXRS5zMoOdXQEFo6gqzF6YStZDnfcOgvcxTUDo7GYOQhpNoZLD1woI2U08b8G4IoVsI5m+vQH59m4Dwx12IMCPl/KK8+hEJ0SX2Fvy6WHIj+zrAXnG2R7Zga+ic= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EGS12iWP; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 44436C19425; Sat, 28 Feb 2026 17:45:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772300742; bh=n11fJxM1zdO1l3kKSRQWSOUtzlFHtSJ7rvoF1B0cTWg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EGS12iWPZBDodMMzxUB+8NvbgQ6tndvghG//NAMI9OgPffyF0v6utyNThqscPwA5h zJL2s2XzYo7gdTb95miBNQ8K4KyTHOa/PPnKbF3wAgcipQaaniN3fU5hdUflvHsneU qRXlrVKfbtaNQhTWVW4AOvehYxO8HSKaY7cIZvsdotvqDQbzkp30EYCiVHi0xE5YvM sh+ixkkB+1l1/2wkOe5gQKnU3mOkCYVEUyuqmQARGPifl0g2zN5I5CDKWIb1ukd0H+ koEP0Wqzc2LBoPnmZVNdBH7g39l7t88zmnMCS0BQ6cRVe+T0BXlWVfSVKTHfoUG8Pc ezyNiOpgM3WTw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Ethan Nelson-Moore , Paolo Abeni , Sasha Levin Subject: [PATCH 6.19 778/844] net: ethernet: marvell: skge: remove incorrect conflicting PCI ID Date: Sat, 28 Feb 2026 12:31:31 -0500 Message-ID: <20260228173244.1509663-779-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit X-DKIM: signer='kernel.org' status='pass' reason='' DKIMCheck: Server passes DKIM test, 0 Spam score X-Spam-Score: -1.2 (-) X-Spam-Report: Spam detection software, running on the system "witcher.mxrouting.net", has performed the tests listed below against this email. Information: https://docs.mxroute.com/docs/expert-spam-filtering.html --- Content analysis details: (-1.2 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: msgid.link] 0.0 URIBL_DBL_BLOCKED_OPENDNS ADMINISTRATOR NOTICE: The query to dbl.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [URIs: msgid.link] 0.0 RCVD_IN_ZEN_BLOCKED_OPENDNS RBL: ADMINISTRATOR NOTICE: The query to zen.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [172.232.135.74 listed in zen.spamhaus.org] 0.0 URIBL_ZEN_BLOCKED_OPENDNS ADMINISTRATOR NOTICE: The query to zen.spamhaus.org was blocked due to usage of an open resolver. See https://www.spamhaus.org/returnc/pub/ [URIs: msgid.link] 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_EF Message has a valid DKIM or DK signature from envelope-from 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: -11 From: Ethan Nelson-Moore [ Upstream commit d01103fdcb871fd83fd06ef5803d576507c6a801 ] The ID 1186:4302 is matched by both r8169 and skge. The same device ID should not be in more than one driver, because in that case, which driver is used is unpredictable. I downloaded the latest drivers for all hardware revisions of the D-Link DGE-530T from D-Link's website, and the only drivers which contain this ID are Realtek drivers. Therefore, remove this device ID from skge. In the kernel bug report which requested addition of this device ID, someone created a patch to add the ID to skge. Then, it was pointed out that this device is an "r8169 in disguise", and a patch was created to add it to r8169. Somehow, both of these patches got merged. See the link below. Link: https://bugzilla.kernel.org/show_bug.cgi?id=38862 Fixes: c074304c2bcf ("add pci-id for DGE-530T") Cc: stable@vger.kernel.org Signed-off-by: Ethan Nelson-Moore Link: https://patch.msgid.link/20260206071724.15268-1-enelsonmoore@gmail.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- drivers/net/ethernet/marvell/skge.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c index 05349a0b2db1c..cf4e26d337bb5 100644 --- a/drivers/net/ethernet/marvell/skge.c +++ b/drivers/net/ethernet/marvell/skge.c @@ -78,7 +78,6 @@ static const struct pci_device_id skge_id_table[] = { { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x4320) }, /* SK-98xx V2.0 */ { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4b01) }, /* D-Link DGE-530T (rev.B) */ { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4c00) }, /* D-Link DGE-530T */ - { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4302) }, /* D-Link DGE-530T Rev C1 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x4320) }, /* Marvell Yukon 88E8001/8003/8010 */ { PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5005) }, /* Belkin */ { PCI_DEVICE(PCI_VENDOR_ID_CNET, 0x434E) }, /* CNet PowerG-2000 */ -- 2.51.0 From - Sat Feb 28 19:51:40 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 wPnIBEdHo2ktrAAAYBR5ng (envelope-from ) for ; Sat, 28 Feb 2026 19:51:35 +0000 Return-path: Envelope-to: hi@josie.lol Delivery-date: Sat, 28 Feb 2026 19:51:35 +0000 Received: from sin.lore.kernel.org ([104.64.211.4]) by witcher.mxrouting.net with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1vwQLe-00000000Hxc-0r1Z for hi@josie.lol; Sat, 28 Feb 2026 19:51:35 +0000 Received: from smtp.subspace.kernel.org (conduit.subspace.kernel.org [100.90.174.1]) by sin.lore.kernel.org (Postfix) with ESMTP id A035831D699A for ; Sat, 28 F3-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":12,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-9","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"c042cb70-1222-4c27-b644-75c80cbf4021","timestamp":"2026-03-01T09:53:59.013Z"} {"parentUuid":"c042cb70-1222-4c27-b644-75c80cbf4021","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":13,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-10","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"58b8cbda-2ca5-44fd-aa24-fc7177f26459","timestamp":"2026-03-01T09:54:00.013Z"} {"parentUuid":"58b8cbda-2ca5-44fd-aa24-fc7177f26459","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":14,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-11","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"a0447cc4-dd0c-443c-8873-4a1d89e825d9","timestamp":"2026-03-01T09:54:01.013Z"} {"parentUuid":"a0447cc4-dd0c-443c-8873-4a1d89e825d9","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":15,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-12","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"3cb96800-925f-4e83-a558-9bbc50ea89d4","timestamp":"2026-03-01T09:54:02.013Z"} {"parentUuid":"3cb96800-925f-4e83-a558-9bbc50ea89d4","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":16,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-13","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"0f0f8f8c-703c-4003-b6b9-41c900835995","timestamp":"2026-03-01T09:54:03.016Z"} {"parentUuid":"0f0f8f8c-703c-4003-b6b9-41c900835995","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":17,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-14","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"b0a8b6ab-8a67-4131-9e6c-542cbfa0348e","timestamp":"2026-03-01T09:54:04.013Z"} {"parentUuid":"b0a8b6ab-8a67-4131-9e6c-542cbfa0348e","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":18,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-15","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"f053a32e-d740-4f72-b04e-be58a44b6c2e","timestamp":"2026-03-01T09:54:05.013Z"} {"parentUuid":"f053a32e-d740-4f72-b04e-be58a44b6c2e","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":19,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-16","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"155fbabf-2eb9-4a37-a27e-176d732adbb8","timestamp":"2026-03-01T09:54:06.013Z"} {"parentUuid":"155fbabf-2eb9-4a37-a27e-176d732adbb8","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":20,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-17","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"0057a80c-058e-4367-a062-18ca0384918a","timestamp":"2026-03-01T09:54:07.013Z"} {"parentUuid":"0057a80c-058e-4367-a062-18ca0384918a","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":21,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-18","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"edf92d73-0ba0-4491-ba3f-dd8193104e6c","timestamp":"2026-03-01T09:54:08.013Z"} {"parentUuid":"edf92d73-0ba0-4491-ba3f-dd8193104e6c","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":22,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-19","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"9fae179f-3a75-4942-8a3e-9ad0602de3a2","timestamp":"2026-03-01T09:54:09.013Z"} {"parentUuid":"9fae179f-3a75-4942-8a3e-9ad0602de3a2","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":23,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-20","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"f10cd9ae-0595-42ae-860a-f9e56b1c9f1c","timestamp":"2026-03-01T09:54:10.013Z"} {"parentUuid":"f10cd9ae-0595-42ae-860a-f9e56b1c9f1c","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":24,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-21","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"c3705de6-7232-4425-80ce-16d3dea0d5b5","timestamp":"2026-03-01T09:54:11.014Z"} {"parentUuid":"c3705de6-7232-4425-80ce-16d3dea0d5b5","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":25,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-22","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"1ede404c-ad22-47ab-a7d9-f4cbab5f4f70","timestamp":"2026-03-01T09:54:12.013Z"} {"parentUuid":"1ede404c-ad22-47ab-a7d9-f4cbab5f4f70","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":26,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-23","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"29666c8d-b848-4d60-90b0-3606378a6559","timestamp":"2026-03-01T09:54:13.015Z"} {"parentUuid":"29666c8d-b848-4d60-90b0-3606378a6559","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":27,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-24","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"022ec7b4-2b80-469f-bbae-2d5c164dfe03","timestamp":"2026-03-01T09:54:14.015Z"} {"parentUuid":"022ec7b4-2b80-469f-bbae-2d5c164dfe03","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":28,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-25","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"bcc76e4d-ee49-41c3-a0ed-943e104ca660","timestamp":"2026-03-01T09:54:15.018Z"} {"parentUuid":"bcc76e4d-ee49-41c3-a0ed-943e104ca660","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":29,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-26","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"37c020ac-8b6f-44aa-91ea-1105b6db329f","timestamp":"2026-03-01T09:54:16.018Z"} {"parentUuid":"37c020ac-8b6f-44aa-91ea-1105b6db329f","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"","fullOutput":"","elapsedTimeSeconds":30,"totalLines":0,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-27","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"f424bd84-5c29-43f8-8588-3b3dd4d44c44","timestamp":"2026-03-01T09:54:17.018Z"} {"parentUuid":"f424bd84-5c29-43f8-8588-3b3dd4d44c44","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":31,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-28","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"8de0fa8a-b3e1-4110-8a66-0b8470a781f9","timestamp":"2026-03-01T09:54:18.018Z"} {"parentUuid":"8de0fa8a-b3e1-4110-8a66-0b8470a781f9","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":32,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-29","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"cf7a5cbd-3030-4f19-947c-69c99dc21825","timestamp":"2026-03-01T09:54:19.018Z"} {"parentUuid":"cf7a5cbd-3030-4f19-947c-69c99dc21825","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":33,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-30","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"de9e0013-86f6-4763-916c-815956410ae0","timestamp":"2026-03-01T09:54:20.021Z"} {"parentUuid":"de9e0013-86f6-4763-916c-815956410ae0","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":34,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-31","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"ade7cd8a-df0e-44a6-9fb1-d87ba7095417","timestamp":"2026-03-01T09:54:21.018Z"} {"parentUuid":"ade7cd8a-df0e-44a6-9fb1-d87ba7095417","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":35,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-32","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"d9a02ef0-b550-4afe-a3e1-8b44de0cc24d","timestamp":"2026-03-01T09:54:22.018Z"} {"parentUuid":"d9a02ef0-b550-4afe-a3e1-8b44de0cc24d","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":36,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-33","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"9fd84f31-0e1a-4866-bc0a-deb18b785514","timestamp":"2026-03-01T09:54:23.018Z"} {"parentUuid":"9fd84f31-0e1a-4866-bc0a-deb18b785514","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":37,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-34","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"c5735630-79d8-4c72-9a85-7fde2fae2154","timestamp":"2026-03-01T09:54:24.020Z"} {"parentUuid":"c5735630-79d8-4c72-9a85-7fde2fae2154","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":38,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-35","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"26f69c33-ced6-41fd-81c7-41e6718115ca","timestamp":"2026-03-01T09:54:25.018Z"} {"parentUuid":"26f69c33-ced6-41fd-81c7-41e6718115ca","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":39,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-36","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"2fab051e-e9a2-4259-8744-24c84dd489e4","timestamp":"2026-03-01T09:54:26.021Z"} {"parentUuid":"2fab051e-e9a2-4259-8744-24c84dd489e4","isSidechain":false,"userType":"external","cwd":"/home/josie/development/personal/josiedot","sessionId":"db810dd5-5a39-4dea-9873-c3afa5cb296f","version":"2.1.63","gitBranch":"main","type":"progress","data":{"type":"bash_progress","output":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","fullOutput":"E0301 10:54:17.052786 43169 memcache.go:265] \"Unhandled Error\" err=\"couldn't get current server API group list: Get \\\"https://api.hub.euw.container.mom:6443/api?timeout=32s\\\": dial tcp 193.176.244.127:6443: i/o timeout\"\n","elapsedTimeSeconds":40,"totalLines":2,"totalBytes":0,"taskId":"bymkozm6c"},"toolUseID":"bash-progress-37","parentToolUseID":"toolu_011tMBz7GC989XkfaNmA6zbz","uuid":"96c84535-53f9-4ff6-a8dd-