From owner-freebsd-current@freebsd.org Tue Dec 6 14:25:48 2016 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8FE8C69A3E for ; Tue, 6 Dec 2016 14:25:48 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: from mail-pg0-x241.google.com (mail-pg0-x241.google.com [IPv6:2607:f8b0:400e:c05::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 88FA0ED5 for ; Tue, 6 Dec 2016 14:25:48 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: by mail-pg0-x241.google.com with SMTP id x23so20029797pgx.3 for ; Tue, 06 Dec 2016 06:25:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to:user-agent; bh=9QE33BA5AJh0PoW+DKIfvdaJM+WSY4d8ymoENk+6wdM=; b=tGOkJX5Y4TVQJKCgLG2blYdxM9QjmyHUtabxsszCEx6fyXF+aM2SFRE3OE0/RjwXFc 7RZ1xgXwkgFKlno0UXGGguC+seEr1+LjwZBygts2aNLTho9/jXTFZ0rsXvJDhpEPYOpe AY3NEBKgRHNKqUAmSjcFmmJJ6ZUvesspZzeYehavgApQHaf7fsOuaYgTQSxN3EYcjhuq E+sBCTwD850yT3GiSeot1rHis8oOBRaIBi+Gs1HAWmW71NM8edGv5/H4qYjuB5mfgkRs GHEoy+ltViGTSMPwKJOCWQEJlWkcs03678jW6P7utvQ9Xet2X5+YR8U3BIRjb1lsbSDL k9Sg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id :mail-followup-to:references:mime-version:content-disposition :in-reply-to:user-agent; bh=9QE33BA5AJh0PoW+DKIfvdaJM+WSY4d8ymoENk+6wdM=; b=eaaWcJ5OO3ZxTbksvxZqgIhDBP3TSTcrvUf2HEYd7m1Jeg4DUZkxOAUX3SUAGTjBdi zZAB3ngsLnBysUf1Aal9Hht/ur3/rE5cRCvyWzU5bbUW+rq9D6V2z5iUr0S05v0Bc+4P OSPRBskJKcuM0gHl/F0At1B13BGBpCmZiMMxLlikKltJG+LMUcJdAqVGVTowTQtHSaUk tsCecEQiBvYewgIEUA20trOhZvAE4FWKzGiRlcvxshDNwPTb2IDG9EcqzwwVzmDlZvDv PpSu5NAuZJXrtABbxt9ZI8bFL1p/R3G5YtqEhVI7PyZ/r5yLbWiE49y8BQdU9zf/aCoc 1prg== X-Gm-Message-State: AKaTC03VFCvtnQ0jHWtXCD9PAqWlfgCjfyBQq8V+4A6SuJs45u0R8xT++EAU8YD7t83FAA== X-Received: by 10.84.173.195 with SMTP id p61mr136919050plb.68.1481034348184; Tue, 06 Dec 2016 06:25:48 -0800 (PST) Received: from ox (c-73-93-112-83.hsd1.ca.comcast.net. [73.93.112.83]) by smtp.gmail.com with ESMTPSA id v76sm35308395pfk.77.2016.12.06.06.25.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Dec 2016 06:25:47 -0800 (PST) Date: Tue, 6 Dec 2016 06:25:44 -0800 From: Navdeep Parhar To: Slawa Olhovchenkov Cc: freebsd-current@freebsd.org Subject: Re: How to load kernel module automatic? Message-ID: <20161206142544.GF14137@ox> Mail-Followup-To: Slawa Olhovchenkov , freebsd-current@freebsd.org References: <20161206114715.GP57876@zxy.spb.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161206114715.GP57876@zxy.spb.ru> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Dec 2016 14:25:48 -0000 On Tue, Dec 06, 2016 at 02:47:15PM +0300, Slawa Olhovchenkov wrote: > Now I am try to update fw in chelsio card. > Firmware can't be updated if card was running (interface go to UP). > I am try to unload if_cxgbe module, check module unloaded... and after > short time see module loaded again! > How is this possible? Something is running "ifconfig cxgbe|cxl|cc" on your system. ifconfig can figure out the name of the module from the name of the ifnet and will kldload it if it isn't in the kernel already. Regards, Navdeep