1. 11 May, 2012 1 commit
    • Zeev Tarantov's avatar
      Perf: fix build breakage · 7001ddb0
      Zeev Tarantov authored
      [Patch not needed upstream as this is a backport build bugfix - gregkh
      
      gcc correctly complains:
      
      util/hist.c: In function ‘__hists__add_entry’:
      util/hist.c:240:27: error: invalid type argument of ‘->’ (have ‘struct hist_entry’)
      util/hist.c:241:23: error: invalid type argument of ‘->’ (have ‘struct hist_entry’)
      
      for this new code:
      
      +                       if (he->ms.map != entry->ms.map) {
      +                               he->ms.map = entry->ms.map;
      +                               if (he->ms.map)
      +                                       he->ms.map->referenced = true;
      +                       }
      
      because "entry" is a "struct hist_entry", not a pointer to a struct.
      
      In mainline, "entry" is a pointer to struct passed as argument to the function.
      So this is broken during backporting. But obviously not compile tested.
      Signed-off-by: default avatarZeev Tarantov <zeev.tarantov@gmail.com>
      Cc: Signed-off-by: David S. Miller <davem@davemloft.net>
      Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
      7001ddb0
  2. 22 Apr, 2012 39 commits