From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bart Van Assche Subject: Re: [PATCH] multipath-tools: use internal drd.h file Date: Mon, 10 Oct 2016 13:01:23 -0700 Message-ID: References: <20161008202212.11963-1-xose.vazquez@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20161008202212.11963-1-xose.vazquez@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com To: Xose Vazquez Perez Cc: device-mapper development List-Id: dm-devel.ids On 10/08/2016 01:22 PM, Xose Vazquez Perez wrote: > Cc: Bart Van Assche > Cc: Christophe Varoqui > Cc: device-mapper development > Signed-off-by: Xose Vazquez Perez > --- > libmultipath/debug.c | 2 +- > multipathd/main.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libmultipath/debug.c b/libmultipath/debug.c > index 295136c..fbe171a 100644 > --- a/libmultipath/debug.c > +++ b/libmultipath/debug.c > @@ -8,7 +8,7 @@ > #include "log_pthread.h" > #include > #include > -#include <../third-party/valgrind/drd.h> > +#include "../third-party/valgrind/drd.h" > #include "vector.h" > #include "config.h" > > diff --git a/multipathd/main.c b/multipathd/main.c > index cdfafe8..0998085 100644 > --- a/multipathd/main.c > +++ b/multipathd/main.c > @@ -23,7 +23,6 @@ > #endif > #include > #include > -#include > > /* > * libmultipath > @@ -85,6 +84,7 @@ int uxsock_timeout; > #include "lock.h" > #include "waiter.h" > #include "wwids.h" > +#include "../third-party/valgrind/drd.h" > > #define FILE_NAME_SIZE 256 > #define CMDSIZE 160 Hello Xose, The patch description is slightly misleading. I don't think anyone has a /usr/third-party directory on her or his system so #include <../third-party/valgrind/drd.h> will select the internal drd.h header file. However, that first change improves consistency: Reviewed-by: Bart Van Assche