From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 32044A04B6; Mon, 12 Oct 2020 08:29:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 142621D5EC; Mon, 12 Oct 2020 08:29:38 +0200 (CEST) Received: from mail-pg1-f170.google.com (mail-pg1-f170.google.com [209.85.215.170]) by dpdk.org (Postfix) with ESMTP id 69CB71D5EB for ; Mon, 12 Oct 2020 08:29:35 +0200 (CEST) Received: by mail-pg1-f170.google.com with SMTP id j7so2543677pgk.5 for ; Sun, 11 Oct 2020 23:29:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=PBVrlmd9EmfAffAO9nLa3L5XIvCJIssgDMXjmViaMto=; b=R7aoSO6U68uSV04gifUJEbRfyYxHU503PT7u8DsvPU0E1RaNOjq1YPcwoV65mZCYUb sRn/PnbBqm9lCtAsKNXKPQE/Zxb8QjQGDSq63fnAV8M1K+cy0gqJG32nvNzxvZqRdJA2 kLgOnbrVsJ8znFII3CB81YD+NF+XRnBMwvGs7shx7aQYL7gm7aAxnUIHPKUiru2+ozSn zGUR1e/IDaTdTrhSWDw6/AIP6OOKbkFsRvjkjN2gih7+Slt5SyXKOySxRliL8mp1abJ+ Rw3vHcuevodJvTTzvmeau7adQVdg7KW4Xj/bGKuH+054/MigCVSenilU0OU55c6d0h2N z7DA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=PBVrlmd9EmfAffAO9nLa3L5XIvCJIssgDMXjmViaMto=; b=avpE+y6UUEq9iqS77zMX0RCOd3GJWnyo7+JyPvnFIy6K/QMAK/OOpYVW16bNuA1uq2 T6V17Sth1oYH7dqxAYOs6JT+HuNS3dDvHgVIdBNvF5SorDwtI8RpXkdhN/08Y2Y5/g7N LusJpJ3glFPXNPiLtnqbAi6oErfn6Eb1SPaq7XxpQOzN4i7RU1f7KnpJnha4FeZDY2B4 y9CP26izrOcf0AqogxL6ks9w2fvLWLj1IbDZuYGm6zpYLCMEon1FKHa8niv0iOPWvwDl cP9CEZsm+YfhsmbijWHXacgY9k4IakSWbhavrzTQs70qWSMZ+JmRjr3JN0u+LOEZ6UGt pq/w== X-Gm-Message-State: AOAM5308UD2pYnX1oBQqu9Eaa1u0O0hU56kIHmSfE0Fj+chLtMm6kBWQ TN7/JWjGZMDII3BhM1188oV/YQ== X-Google-Smtp-Source: ABdhPJw6si3hlc3bbVuxbPvIthXnPtPNeBOKDMvWA4dooWT/U2ot6Ec62tOG9hA453bRdUuS8MQSaA== X-Received: by 2002:a63:4f17:: with SMTP id d23mr12054357pgb.319.1602484173540; Sun, 11 Oct 2020 23:29:33 -0700 (PDT) Received: from hermes.local (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id e4sm11813975pgg.37.2020.10.11.23.29.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 11 Oct 2020 23:29:33 -0700 (PDT) Date: Sun, 11 Oct 2020 23:29:25 -0700 From: Stephen Hemminger To: "Wei Hu (Xavier)" Cc: , Message-ID: <20201011232925.07ce9584@hermes.local> In-Reply-To: <20201012031907.8990-1-huwei013@chinasoftinc.com> References: <20201010071212.24086-1-huwei013@chinasoftinc.com> <20201012031907.8990-1-huwei013@chinasoftinc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2] ethdev: check if queue setupped in queue-related APIs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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 Mon, 12 Oct 2020 11:19:07 +0800 "Wei Hu (Xavier)" wrote: > + RTE_ETHDEV_LOG(ERR, > + "Queue %u of device with port_id=%u has not been" > + " setup\n", rx_queue_id, port_id); Please do not break lines in format strings. If checkpatch complains (which it shouldn't) ignore the warning.