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 4B7EB42527; Wed, 6 Sep 2023 17:09:23 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 48B0B4027C; Wed, 6 Sep 2023 17:09:23 +0200 (CEST) Received: from mail-pf1-f170.google.com (mail-pf1-f170.google.com [209.85.210.170]) by mails.dpdk.org (Postfix) with ESMTP id CB6E540270 for ; Wed, 6 Sep 2023 17:09:21 +0200 (CEST) Received: by mail-pf1-f170.google.com with SMTP id d2e1a72fcca58-68e29792976so1254309b3a.2 for ; Wed, 06 Sep 2023 08:09:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20230601.gappssmtp.com; s=20230601; t=1694012961; x=1694617761; darn=dpdk.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=e0CQiCu32ZMWs++Khr7nl1Dwp8eyjX5Ayz6Pv98SQdM=; b=NL9uXzEsCB0jHuuqp1IQ6abppWrI9s57098dYFncjko9EVldcRiiVJqO+pKIJrrYjt zhnSxMUMXey3eq3zoY153ZRZQ1hTYe8kGs89PvxDsSgof2pRRI23jfWwFvFBX1PD/pt7 lrPH6FJutrxBkvaxF89OsXsF8JNveROR8rEWBKsIGD/zOmpzojhx5cqm9jZloimgpUDS EazgzBRJKaV/yLFCMj4NVQdtmaTDtF3YIVlTBiCN0N/K9I2LhfN3ubm7B/FGiiTAYOw8 lEsjGjB+vvFVsRSoGIRnDiPhaAOMHNJkKWSt7QY2WAQHFU/ho+a22DkSHIzpGKpzbZY3 TM3Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1694012961; x=1694617761; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=e0CQiCu32ZMWs++Khr7nl1Dwp8eyjX5Ayz6Pv98SQdM=; b=I29V8eQflMxlv95PDKtVmfdRHzyZyDHElnVF63jMwgaEwVV9j7jh92dLRH9OBLkXKy 31iNwqU5GGjFrwZsM8Dj32T/7ROqtAE6oB3dLdk9X/kzGTZgI3HUvpDRRh5Wdk4rYJcU rALZD2lqLTvXRadENnfQKBC5HxjjK3fgpaM1s6+kUXSMf7XR8v1kSn326MAfMAZdaL78 pMk4cykFhf5GgpJnf+XdFHh+EwqDgq7igNi3UEyYz7Mds/G4C4xPLYk8mAuilvNxATRH 6eKbXOaalYrzrURNcOPTsWmeUnOYq3v3gypE/y1XW7ovx075p4BXAijKjjninhm+i9Pc cBFg== X-Gm-Message-State: AOJu0YygBWwpeaENL677lPTh0R4PQhCBFFKyYsxm2ZFrpP1QXietiuMu vCOBNA5ucOrTtWHYvY3s2RInTw== X-Google-Smtp-Source: AGHT+IGNGmRhWzcj2SpGf5UTPjWtjIZLO176Gsl7yv9kIPYbhbaL8q75/azkotzgwZlNzcMaSZeq/A== X-Received: by 2002:a05:6a20:1052:b0:13a:ccb9:d5b7 with SMTP id gt18-20020a056a20105200b0013accb9d5b7mr12764822pzc.41.1694012961000; Wed, 06 Sep 2023 08:09:21 -0700 (PDT) Received: from hermes.local (204-195-112-131.wavecable.com. [204.195.112.131]) by smtp.gmail.com with ESMTPSA id w18-20020aa78592000000b0068c651a462dsm11079566pfn.35.2023.09.06.08.09.20 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 06 Sep 2023 08:09:20 -0700 (PDT) Date: Wed, 6 Sep 2023 08:09:18 -0700 From: Stephen Hemminger To: Cc: , , Steven Song Subject: Re: [PATCH 08/32] net/sssnic/base: add work queue Message-ID: <20230906080918.7c0545dd@hermes.local> In-Reply-To: <20230829075829.208413-9-wanry@3snic.com> References: <20230829075829.208413-1-wanry@3snic.com> <20230829075829.208413-9-wanry@3snic.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Tue, 29 Aug 2023 15:58:05 +0800 wrote: > From: Renyong Wan > > Work queue is used to maintain hardware queue information by > driver, it is usually used in control queue, rx queue > and tx queue. > > Signed-off-by: Steven Song > Signed-off-by: Renyong Wan Looks like this driver is reinventing rte_ring. Please don't do this.