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 52F4BC4167B for ; Tue, 12 Dec 2023 15:08:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1376475AbjLLPIV (ORCPT ); Tue, 12 Dec 2023 10:08:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33578 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1376461AbjLLPIT (ORCPT ); Tue, 12 Dec 2023 10:08:19 -0500 Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 87F8CAA for ; Tue, 12 Dec 2023 07:08:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=date:from:to:cc:subject:in-reply-to:message-id: references:mime-version; bh=/ViUfK5Qr+atc+6M7L5mu3NaL5ELpYL5fC4EkoScI0k=; b=oP6sHml1sTlA4Bk/6Ezha0+OpcjEZiYoeDpglw1Ku8biOQCqDINVza8/ cmxCGzNo34i0rLmIATmFyiF1l/yV73LBcieC5jnFP4Q1CR7fFUJwxH+vF KpaoEwWrvpqam0xCCbT7sQ83EnGVTq0ayI9o9MtBEWMfszc2bG6PGkfil c=; Authentication-Results: mail3-relais-sop.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=julia.lawall@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="6.04,270,1695679200"; d="scan'208";a="74197563" Received: from dt-lawall.paris.inria.fr ([128.93.67.65]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Dec 2023 16:08:24 +0100 Date: Tue, 12 Dec 2023 16:08:22 +0100 (CET) From: Julia Lawall To: Ivan Vecera cc: "David S. Miller" , linux-kernel@vger.kernel.org Subject: Re: Failed to start Raise network interfaces error In-Reply-To: <21977757-3a63-4586-ae03-e6630c1f009d@redhat.com> Message-ID: References: <21977757-3a63-4586-ae03-e6630c1f009d@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 12 Dec 2023, Ivan Vecera wrote: > On 10. 12. 23 23:28, Julia Lawall wrote: > > Hello, > > > > Starting with the commit: > > > > commit 9e479d64dc58f11792f638ea2e8eff3304edaabf > > Author: Ivan Vecera > > Date: Fri Oct 13 19:07:51 2023 +0200 > > > > i40e: Add initial devlink support > > > > I am not able to boot normally. The console shows the message > > > > Failed to start Raise network interfaces > > > > Searching for this message on th internet produces some old discussions > > that suggest to look at the file /etc/network/interfaces. That file on my > > system contains: > > > > # This file describes the network interfaces available on your system > > # and how to activate them. For more information, see interfaces(5). > > > > source /etc/network/interfaces.d/* > > > > # The loopback network interface > > auto lo > > iface lo inet loopback > > > > auto enp24s0f0 > > iface enp24s0f0 inet dhcp > > The problem is maybe with interface name... after this commit the interface > should contain port_name suffix. In your case the name should be > `enp24s0f0np0`. > > Could you please check it? Thanks for the feedback. But I'm not clear on how this would work. Does there have to be one name for kernels before this patch and another name for kernels starting with this patch? Or is the new name also acceptable for older kernels? thanks, julia