From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5E1CDA0A0C; Mon, 5 Jul 2021 11:19:06 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2D36A4068C; Mon, 5 Jul 2021 11:19:06 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id E5A174003C for ; Mon, 5 Jul 2021 11:19:04 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 9A0F87F4FD; Mon, 5 Jul 2021 12:19:04 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 9A0F87F4FD DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1625476744; bh=MaCHXY17SHLKH86mtZSI2+0tEkaAk3+qqYmzRlENxcs=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=MHZLN4Nay/CfWPBRJHok8sV3BfBjb+e5VZyRClQe8ISrYwKY8fQe2R/43R+VzuEhW SJNNBswfzGj88w7Gw3ILtjUbqQ0nrW4H9oHzLfclwHX2Tdkfo8kQ9/77WK/5yYfi40 dYgKdIKZURzl3Tzo1+IF0YI+egb84wvUeWofu6UQ= To: Xueming Li Cc: dev@dpdk.org, Wang Haiyue , Thomas Monjalon , Kinsella Ray , Parav Pandit , Neil Horman References: <20210625114726.776425-1-xuemingl@nvidia.com> <20210705064512.13116-2-xuemingl@nvidia.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: Date: Mon, 5 Jul 2021 12:19:04 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210705064512.13116-2-xuemingl@nvidia.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v8 2/2] bus/auxiliary: introduce auxiliary bus X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 7/5/21 9:45 AM, Xueming Li wrote: > Auxiliary bus [1] provides a way to split function into child-devices > representing sub-domains of functionality. Each auxiliary device > represents a part of its parent functionality. > > Auxiliary device is identified by unique device name, sysfs path: > /sys/bus/auxiliary/devices/ > > Devargs legacy syntax of auxiliary device: > -a auxiliary:[,args...] > Devargs generic syntax of auxiliary device: > -a bus=auxiliary,name=/class=/driver=[,args...] > > [1] kernel auxiliary bus document: > https://www.kernel.org/doc/html/latest/driver-api/auxiliary_bus.html > > Signed-off-by: Xueming Li > Cc: Wang Haiyue > Cc: Thomas Monjalon > Cc: Kinsella Ray > Acked-by: Andrew Rybchenko I still don't understand if we really need to make the API a part of stable API/ABI in the future. Can it be internal?