lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 18 Sep 2013 12:18:01 +0200
From:	Peter Zijlstra <peterz@...radead.org>
To:	Ricardo Ribalda Delgado <ricardo.ribalda@...il.com>
Cc:	Ingo Molnar <mingo@...nel.org>, Paul Mackerras <paulus@...ba.org>,
	Ingo Molnar <mingo@...hat.com>,
	Arnaldo Carvalho de Melo <acme@...stprotocols.net>,
	Namhyung Kim <namhyung@...nel.org>,
	Waiman Long <Waiman.Long@...com>,
	Stephane Eranian <eranian@...gle.com>,
	Jiri Olsa <jolsa@...hat.com>, David Ahern <dsahern@...il.com>,
	LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] perf: Support for Openembedded/Yocto -dbg packages

On Wed, Sep 18, 2013 at 12:02:12PM +0200, Ricardo Ribalda Delgado wrote:
> Hello again Ingo:
> 
> Perhaps this is even more clear than v2:
> 
> len = snprintf(file, size, "%s", symbol_conf.symfs);
> size -= len;
> file += len;
> len = snprintf(file, MIN(size,(last_slash - dso->long_name) + 2),
> "%s",  dso->long_name);
> size -= len;
> file += len;
> len = snprintf(file, size, ".debug%s",  last_slash);
> 

len = 0;

len += snprintf(str + len, size - len, ...);
len += snprintf(str + len, size - len, ...);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists