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 X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 19A8EC43463 for ; Thu, 17 Sep 2020 20:00:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D08CE206DB for ; Thu, 17 Sep 2020 20:00:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600372832; bh=VonLcGC9WYLHniE2w/czvnaUZa99NGgt6rFtYOzl/IU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=d81qzbaod361Y+s1cOduOiOhb5tf4yuyogJ9V9LtlRWyxf6fmCong+pTghwkrPEpM nPzXFLiN4fguMA9h5UiBfbIETdwkrnhvFV240pZctpyGDe/XmXleSHjHVKeaLkHp9N ho6SfcwwxAwFg1f5c2Sc3owSEtF0ctCgKFUXfPeM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726572AbgIQUAa (ORCPT ); Thu, 17 Sep 2020 16:00:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:59868 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726381AbgIQUAa (ORCPT ); Thu, 17 Sep 2020 16:00:30 -0400 Received: from kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com (unknown [163.114.132.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6A7A2235F7; Thu, 17 Sep 2020 19:52:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600372348; bh=VonLcGC9WYLHniE2w/czvnaUZa99NGgt6rFtYOzl/IU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=paC8HuavIJ4e/1Yxhyqo0rgTm2Fvu3K8pBHzQ5iia/FpF06COY/57VQFEmrHu4BIa irl++yVs0VomByRh/z1JP+ACHrrmCjLpPIaO4ramLlDOLwBA7tFUq2E2LH5hRC0ibn hvh0X/HHKXkz8JfZ5OjJjf0f0KG09ivkwOxuYsL0= Date: Thu, 17 Sep 2020 12:52:27 -0700 From: Jakub Kicinski To: Shannon Nelson Cc: netdev@vger.kernel.org, davem@davemloft.net Subject: Re: [PATCH v4 net-next 5/5] ionic: add devlink firmware update Message-ID: <20200917125227.52d58738@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> In-Reply-To: <20200917030204.50098-6-snelson@pensando.io> References: <20200917030204.50098-1-snelson@pensando.io> <20200917030204.50098-6-snelson@pensando.io> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Wed, 16 Sep 2020 20:02:04 -0700 Shannon Nelson wrote: > Add support for firmware update through the devlink interface. > This update copies the firmware object into the device, asks > the current firmware to install it, then asks the firmware to > select the new firmware for the next boot-up. > > The install and select steps are launched as asynchronous > requests, which are then followed up with status request > commands. These status request commands will be answered with > an EAGAIN return value and will try again until the request > has completed or reached the timeout specified. > > Signed-off-by: Shannon Nelson Acked-by: Jakub Kicinski