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 CD541A00BE; Wed, 30 Oct 2019 10:03:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A5CB31BF52; Wed, 30 Oct 2019 10:03:24 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 813071BF49 for ; Wed, 30 Oct 2019 10:03:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1572426202; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=N3wknUWDHcgqjrs7T5P8KS5JeJlYTtBSWlgMqlwTng0=; b=Qx8Xrlf+BLghLQqR9pTS7AedGGpGQLj9eweIf7QY3bCPVaSZ+W1jIOTzE9AVjTqXNlUuo+ W0yKI4n9WVb1g9mXGP9nrzgggVsA6CrHOYnxkUGP5z3dlrSrrVM85kMnL5R1ddBQiiTXiH KsFqM3RMebqr8AYIysOq8jj4y5Ux3OQ= Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-301-W1yb_JVcOwCPsSFmwOuIQg-1; Wed, 30 Oct 2019 05:03:18 -0400 Received: by mail-vk1-f197.google.com with SMTP id g144so681280vkf.8 for ; Wed, 30 Oct 2019 02:03:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=QqeCbOtDQG/eTsm+kjSEt/SyJzYS2Mu2NlMKCqo3F9o=; b=nU3B0m8gCdFi1N45pl23PTLJnZbjR+idKUlHYwPpRK4m7Pv8KOmAWnDcj5tfSMVqdP JPXp8NfoetZoaHAQjXxlCTo0Rh2S+b/ye2glTil6QSRNQZEQmKNwDWguuVgumNQMLg10 wImEwkLs0/pHTsQF8Ov9TvjEropZC4XdgOzUl14rzMhd26riNOdu4VSyBxyHNfu20Px1 TmhYdsJmGMKF2VeCcyeSoHMJoqYN/SM1pflxxNtVf0pzJMt8V6iTbzVIO80aX24o3OF/ 9e/bg1qS8gVWzgr5moYH4TnhHFPDaZV3Nw6dOLXi8cd47Rb1eAUQPdfIHNKxfa4+ccHC yXvA== X-Gm-Message-State: APjAAAVw9K7yBuMdT5I5q/lfO1qoLSAxazaVhWz48U7YcloXt7f348yQ OM/Vm+OcpWf03pAFJd3dm8s3otIYxiIcNwVIn2P9VDqbaOrfzVAjALbI59tGCDfxuVBA+wOginn SE3d/CqxyPfuEfOnOR64= X-Received: by 2002:a67:fa99:: with SMTP id f25mr4284015vsq.141.1572426197451; Wed, 30 Oct 2019 02:03:17 -0700 (PDT) X-Google-Smtp-Source: APXvYqxM1ARxOrebdZy1jvMw9Dfh0jo8sKFToiIASKiYt/SghiUSj4k6W0gEyuIpnlXarMFQzGXRh2sWSw98vK0ZeoQ= X-Received: by 2002:a67:fa99:: with SMTP id f25mr4283993vsq.141.1572426197104; Wed, 30 Oct 2019 02:03:17 -0700 (PDT) MIME-Version: 1.0 References: <5fa7aac59baffdc90720fc9b229f619c87a29122.1572425052.git.dekelp@mellanox.com> In-Reply-To: <5fa7aac59baffdc90720fc9b229f619c87a29122.1572425052.git.dekelp@mellanox.com> From: David Marchand Date: Wed, 30 Oct 2019 10:03:04 +0100 Message-ID: To: Dekel Peled Cc: Matan Azrad , Viacheslav Ovsiienko , Shahaf Shuler , Ori Kam , dev X-MC-Unique: W1yb_JVcOwCPsSFmwOuIQg-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH] net/mlx5: remove redundant new line char in logs 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 Wed, Oct 30, 2019 at 9:45 AM Dekel Peled wrote: > > DRV_LOG macro is used to print log messages, one per line. > In several locations this macro is used with redundant '\n' character > at the end of the log message, causing blank lines between log lines. > > This patch removes the '\n' character where it is redundant. Missing Fixes: ? --=20 David Marchand