Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753983AbaJMMoT (ORCPT ); Mon, 13 Oct 2014 08:44:19 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54151 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753464AbaJMMoS (ORCPT ); Mon, 13 Oct 2014 08:44:18 -0400 Date: Mon, 13 Oct 2014 14:44:02 +0200 From: Jiri Olsa To: Rickard Strandqvist Cc: Peter Zijlstra , Paul Mackerras , Ingo Molnar , Arnaldo Carvalho de Melo , Namhyung Kim , Jiri Olsa , Frederic Weisbecker , Don Zickus , linux-kernel@vger.kernel.org Subject: Re: [PATCH] tools: perf: util: sort.c: Changed from using strncat to strlcat Message-ID: <20141013124401.GA5888@krava.redhat.com> References: <1413146435-22202-1-git-send-email-rickard_strandqvist@spectrumdigital.se> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1413146435-22202-1-git-send-email-rickard_strandqvist@spectrumdigital.se> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Oct 12, 2014 at 10:40:35PM +0200, Rickard Strandqvist wrote: > Changed from using strncat to strlcat to simplify the code > > Signed-off-by: Rickard Strandqvist > --- > tools/perf/util/sort.c | 12 ++++-------- > 1 file changed, 4 insertions(+), 8 deletions(-) > > diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c > index 14e5a03..6e242f0 100644 > --- a/tools/perf/util/sort.c > +++ b/tools/perf/util/sort.c > @@ -759,8 +759,7 @@ static int hist_entry__snoop_snprintf(struct hist_entry *he, char *bf, > size_t size, unsigned int width) > { > char out[64]; > - size_t sz = sizeof(out) - 1; /* -1 for null termination */ > - size_t i, l = 0; > + size_t i; > u64 m = PERF_MEM_SNOOP_NA; > > out[0] = '\0'; > @@ -771,12 +770,9 @@ static int hist_entry__snoop_snprintf(struct hist_entry *he, char *bf, > for (i = 0; m && i < NUM_SNOOP_ACCESS; i++, m >>= 1) { > if (!(m & 0x1)) > continue; > - if (l) { > - strcat(out, " or "); > - l += 4; > - } > - strncat(out, snoop_access[i], sz - l); > - l += strlen(snoop_access[i]); > + if (*out != '\0') > + strlcat(out, " or ", sizeof(out)); > + strlcat(out, snoop_access[i], sizeof(out)); I've got compile error.. [jolsa@krava perf]$ make JOBS=1 BUILD: Doing 'make -j1' parallel build CC perf.o CC builtin-annotate.o CC builtin-bench.o CC bench/sched-messaging.o CC bench/sched-pipe.o CC util/sort.o util/sort.c: In function ‘hist_entry__snoop_snprintf’: util/sort.c:778:4: error: implicit declaration of function ‘strlcat’ [-Werror=implicit-function-declaration] strlcat(out, " or ", sizeof(out)); ^ util/sort.c:778:4: error: nested extern declaration of ‘strlcat’ [-Werror=nested-externs] cc1: all warnings being treated as errors make[1]: *** [util/sort.o] Error 1 make: *** [all] Error 2 jirka -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/