Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package blktrace for openSUSE:Factory checked in at 2021-10-29 22:34:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/blktrace (Old) and /work/SRC/openSUSE:Factory/.blktrace.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "blktrace" Fri Oct 29 22:34:14 2021 rev:37 rq:928037 version:1.3.0+git.20211021 Changes: -------- --- /work/SRC/openSUSE:Factory/blktrace/blktrace.changes 2021-10-16 22:47:49.600701345 +0200 +++ /work/SRC/openSUSE:Factory/.blktrace.new.1890/blktrace.changes 2021-10-29 22:35:19.483706857 +0200 @@ -1,0 +2,7 @@ +Thu Oct 21 18:28:10 UTC 2021 - [email protected] + +- Update to version 1.3.0+git.20211021: + * blkparse: fix incorrectly sized memset in check_cpu_map + * blkparse: skip check_cpu_map with pipe input + +------------------------------------------------------------------- Old: ---- blktrace-1.3.0+git.20210628.tar.xz New: ---- blktrace-1.3.0+git.20211021.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ blktrace.spec ++++++ --- /var/tmp/diff_new_pack.yptjv7/_old 2021-10-29 22:35:19.855706997 +0200 +++ /var/tmp/diff_new_pack.yptjv7/_new 2021-10-29 22:35:19.859706999 +0200 @@ -18,7 +18,7 @@ %{!?_without_docs: %global with_docs 1} Name: blktrace -Version: 1.3.0+git.20210628 +Version: 1.3.0+git.20211021 Release: 0 Summary: Block IO tracer License: GPL-2.0-only ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.yptjv7/_old 2021-10-29 22:35:19.891707011 +0200 +++ /var/tmp/diff_new_pack.yptjv7/_new 2021-10-29 22:35:19.891707011 +0200 @@ -3,4 +3,4 @@ <param name="url">git://git.kernel.dk/blktrace.git</param> <param name="changesrevision">70d5ca2d5f3d6b97c11c641b7e0c5836983219a0</param></service><service name="tar_scm"> <param name="url">https://git.kernel.dk/blktrace.git</param> - <param name="changesrevision">3a1b1366d30375cdb0f5b299df4edda0c8ba3bcc</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">7f5d2c5173d72018aa29c583c9291ef10abaf8df</param></service></servicedata> \ No newline at end of file ++++++ blktrace-1.3.0+git.20210628.tar.xz -> blktrace-1.3.0+git.20211021.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blktrace-1.3.0+git.20210628/.gitignore new/blktrace-1.3.0+git.20211021/.gitignore --- old/blktrace-1.3.0+git.20210628/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/blktrace-1.3.0+git.20211021/.gitignore 2021-10-21 16:45:17.000000000 +0200 @@ -0,0 +1,14 @@ +.depend +*.o +blkparse +blktrace +blkrawverify +blkiomon +btreplay/btrecord +btreplay/btreplay +doc/.depend +verify_blkparse +btt/btt +btt/doc/btt.pdf +doc/blktrace.pdf +iowatcher/iowatcher diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blktrace-1.3.0+git.20210628/blkparse.c new/blktrace-1.3.0+git.20211021/blkparse.c --- old/blktrace-1.3.0+git.20210628/blkparse.c 2021-06-28 21:41:32.000000000 +0200 +++ new/blktrace-1.3.0+git.20211021/blkparse.c 2021-10-21 16:45:17.000000000 +0200 @@ -2229,11 +2229,14 @@ unsigned int i; int ret, cpu; + /* Pipe input doesn't do CPU online tracking. */ + if (!pdi->cpu_map_max) + return 0; + /* * create a map of the cpus we have traces for */ - cpu_map = malloc(pdi->cpu_map_max / sizeof(long)); - memset(cpu_map, 0, sizeof(*cpu_map)); + cpu_map = calloc(1, pdi->cpu_map_max / sizeof(long)); n = rb_first(&rb_sort_root); while (n) { __t = rb_entry(n, struct trace, rb_node);
