From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f195.google.com (mail-pf0-f195.google.com [209.85.192.195]) by dpdk.org (Postfix) with ESMTP id 96D561B024 for ; Tue, 9 Jan 2018 01:07:11 +0100 (CET) Received: by mail-pf0-f195.google.com with SMTP id e3so7204636pfi.10 for ; Mon, 08 Jan 2018 16:07:11 -0800 (PST) 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:mime-version :content-transfer-encoding; bh=xzENW3GVeO05Hj9Z6STMKF4kheorMraoq7Vgub7l9G0=; b=zuULsD0la+h6EjLsLE8kpbNdv7J8B9eeRGSqGV3TCQbrZmn799Ydxs+ZkTfTWTxRK0 vWED2s/CQ/FJVgZ8eIo/st9BZI3makuzAajk7F2cAeKFFawouALu6hEvpxEK+zF5b5XL GJLOEzZ/YTvJWVt9jI3MYJSnamJFb99AXcox3sofEQU2wcs7y6C+nGXkycSA4p7ZKyN5 ZTTQgpE4e8UUyoepITBCYwCDNG98I6UMrMqqsxxVECbJLOY0pZm5/vfw/je4N3agXunT 6lD37qCQrFg8h4Jsx8e9grM0rnYIth/RRMZyoL14Gqa+KgCBb3uZreryEAdA/Yp6JLQe U8yQ== 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:mime-version :content-transfer-encoding; bh=xzENW3GVeO05Hj9Z6STMKF4kheorMraoq7Vgub7l9G0=; b=i9PdeAnymjzsp4g2NaYNMMO+27n7RUZatpdiaRjEG5WAYfnY/8o0UudZZWj+uqq245 7IaYycjPocQqAGN8/zLGP8HrFdN5FZgt/fei7BicuDp9MNy1Tphu0IEpNO4wiu4FbY7m UgbmLidaY/SpTbIZikpg5kajluNr5gAttY+DQUw3ea9fLbu+CAk3iHTEFb/BiFGtE/T2 8+JIImLKDR1SWkSAoPynEBYyg4Iz7OV93VOf+3Q1U4XaIFDsz2CLlzphcM9OJ5ERlQwh qz6QvZPGUs53qugt8bd3uscmhFO/zUhh9quAKCGwVhFzmxVtBk5uvBiNtiFi/7BwRA/5 Q/Cw== X-Gm-Message-State: AKGB3mK3sNyH/Yclij+wTO3DOXd7+ZEnhMHad1p/zxERwt+RQxUmFdU+ 8u1gGiXPwI6YVGYO0L4nzxjTSw== X-Google-Smtp-Source: ACJfBouYXsKfzpPhVyNCqk/9+gY5jQ4onFs5wNvh1u2vAcMuctu31zzCaQ9AWFpmis3jLltO+k3Y1g== X-Received: by 10.101.74.69 with SMTP id a5mr10420451pgu.297.1515456430776; Mon, 08 Jan 2018 16:07:10 -0800 (PST) Received: from xeon-e3 (204-195-18-133.wavecable.com. [204.195.18.133]) by smtp.gmail.com with ESMTPSA id r9sm22145443pgp.78.2018.01.08.16.07.10 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 08 Jan 2018 16:07:10 -0800 (PST) Date: Mon, 8 Jan 2018 16:06:58 -0800 From: Stephen Hemminger To: Konstantin Ananyev Cc: dev@dpdk.org Message-ID: <20180108160658.4ce7f7a7@xeon-e3> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [dpdk-dev] [BUG] ACL library using printf 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: , X-List-Received-Date: Tue, 09 Jan 2018 00:07:12 -0000 In general, DPDK functions must not print to stdout (or stderr) directly because typically DPDK applications are run as daemons and console is redirected to /dev/null. Doing a small audit of this noticed that ACL library needs to be fixed. Instead of looking at log_level and using printf, it should be using new dynamic logging and normal rte_log. Please fix this.