1. 14 Mar, 2017 15 commits
  2. 08 Mar, 2017 1 commit
  3. 07 Mar, 2017 1 commit
  4. 06 Mar, 2017 21 commits
  5. 01 Mar, 2017 2 commits
    • Kir Kolyshkin's avatar
      nmk: clean gcov files, too · 1510b248
      Kir Kolyshkin authored
      When criu is compiled with GCOV=1, .gc* files created are never
      cleaned. While 'git clean -dxf' does the job and is popular
      among the criu devs, it still feels good to have good ol'
      make clean doing the right thing.
      Reviewed-by: 's avatarDmitry Safonov <dsafonov@virtuozzo.com>
      Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
      Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
      1510b248
    • Kir Kolyshkin's avatar
      criu: change the way -v works · c4247302
      Kir Kolyshkin authored
      For most of the CLI tools I see, adding -v option increases their verbosity.
      
      Currently, this is not the case for criu. Default verbosity is set it 2,
      and using -v actually decreases the verbosity level to 1, so to increase
      verbosity you need to use -vvv (or -v3). To me, this behavior is
      quite counterintuitive.
      
      This patch changes the way -v works (but retains -vNUM as it was). Now,
      using -v increases verbosity by +1 from the default value (and e.g. -vvv
      increases it by +3).
      
      Surely, this changes user experience: for example someone who
      was using -v (rather than -v1 or -v0) to silent warnings, will
      now have verbosity increased. IMHO this is for the better.
      Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
      Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
      c4247302