All of lore.kernel.org
 help / color / mirror / Atom feed
* gcc warning in my trace_benchmark() code
@ 2014-06-05 16:12 Steven Rostedt
  2014-06-05 17:12 ` David Daney
  0 siblings, 1 reply; 10+ messages in thread
From: Steven Rostedt @ 2014-06-05 16:12 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips

I'm going through some of the warnings that Fengguang Wu's test bot has
discovered, and one of them is from a MIPS allmodconfig build.

https://lists.01.org/pipermail/kbuild-all/2014-May/004751.html

   kernel/trace/trace_benchmark.c: In function 'trace_do_benchmark':
>> kernel/trace/trace_benchmark.c:84:3: warning: comparison of distinct pointer types lacks a cast [enabled by default]
>> kernel/trace/trace_benchmark.c:85:3: warning: comparison of distinct pointer types lacks a cast [enabled by default]
   kernel/trace/trace_benchmark.c:38:6: warning: unused variable 'seedsq' [-Wunused-variable]

vim +84 kernel/trace/trace_benchmark.c

    78		if (bm_cnt > 1) {
    79			/*
    80			 * Apply Welford's method to calculate standard deviation:
    81			 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
    82			 */
    83			stddev = (u64)bm_cnt * bm_totalsq - bm_total * bm_total;
  > 84			do_div(stddev, bm_cnt);
  > 85			do_div(stddev, bm_cnt - 1);
    86		} else
    87			stddev = 0;
    88	



Is there something special with do_div in mips that I should be aware
of?

-- Steve

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-06-06  7:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-05 16:12 gcc warning in my trace_benchmark() code Steven Rostedt
2014-06-05 17:12 ` David Daney
2014-06-05 17:35   ` Steven Rostedt
2014-06-05 18:44     ` David Daney
2014-06-05 18:53       ` Steven Rostedt
2014-06-05 21:56         ` David Daney
2014-06-05 22:17           ` Steven Rostedt
2014-06-06  7:16           ` Geert Uytterhoeven
2014-06-05 21:07   ` Ralf Baechle
2014-06-05 21:38     ` Maciej W. Rozycki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.