1. 18 Feb, 2014 11 commits
  2. 14 Feb, 2014 6 commits
  3. 13 Feb, 2014 1 commit
  4. 11 Feb, 2014 4 commits
  5. 10 Feb, 2014 17 commits
  6. 07 Feb, 2014 1 commit
    • Cyrill Gorcunov's avatar
      show: protobuf -- Fix rendering of repeated messages · c76ac46c
      Cyrill Gorcunov authored
      Repeated custom entries are presented as an array
      of pointers in the memory, so once we fetch the
      first entry we are to continue iterating pointers
      instead.
      
      Before
      
      	| vmas: {
      	|         start: 0x00000000400000
      	|         end: 0x00000000406000
      	|         pgoff: 0000000000000000
      	|         shmid: 0x0000000000000b
      	|         prot: 0x5
      	|         flags: 0x2
      	|         status: 0x41
      	|         fd: 0xffffffffffffffff
      	| }
      	| :{
      	|         start: 0x00000000462d00
      	|         end: 0000000000000000
      	|         pgoff: 0000000000000000
      	|         shmid: 0x00000000605000
      	|         prot: 0x606000
      	|         flags: 0
      	|         status: 0x5000
      	|         fd: 0x0000000000000b
      	|         madv: 0x00000000000041
      	| }
      
      After
      
      	| vmas: {
      	|         start: 0x00000000400000
      	|         end: 0x00000000406000
      	|         pgoff: 0000000000000000
      	|         shmid: 0x0000000000000b
      	|         prot: 0x5
      	|         flags: 0x2
      	|         status: 0x41
      	|         fd: 0xffffffffffffffff
      	| }
      	| :{
      	|         start: 0x00000000605000
      	|         end: 0x00000000606000
      	|         pgoff: 0x00000000005000
      	|         shmid: 0x0000000000000b
      	|         prot: 0x1
      	|         flags: 0x2
      	|         status: 0x41
      	|         fd: 0xffffffffffffffff
      	| }
      Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
      Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
      c76ac46c