1. 12 12月, 2019 3 次提交
  2. 11 12月, 2019 2 次提交
  3. 10 12月, 2019 12 次提交
  4. 09 12月, 2019 1 次提交
  5. 28 11月, 2019 1 次提交
  6. 27 11月, 2019 1 次提交
  7. 26 11月, 2019 3 次提交
  8. 22 11月, 2019 1 次提交
    • D
      util: consolidate on one free callback for hash data · bc7e7291
      Daniel P. Berrangé 提交于
      This previous commit introduced a simpler free callback for
      hash data with only 1 arg, the value to free:
      
        commit 49288fac
        Author: Peter Krempa <pkrempa@redhat.com>
        Date:   Wed Oct 9 15:26:37 2019 +0200
      
          util: hash: Add possibility to use simpler data free function in virHash
      
      It missed two functions in the hash table code which need
      to call the alternate data free function, virHashRemoveEntry
      and virHashRemoveSet.
      
      After the previous patch though, there is no code that
      makes functional use of the 2nd key arg in the data
      free function. There is merely one log message that can
      be dropped.
      
      We can thus purge the current virHashDataFree callback
      entirely, and rename virHashDataFreeSimple to replace
      it.
      Reviewed-by: NMichal Privoznik <mprivozn@redhat.com>
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      bc7e7291
  9. 19 11月, 2019 2 次提交
  10. 18 11月, 2019 2 次提交
  11. 16 11月, 2019 1 次提交
    • M
      virbpf: Check if syscall() is available · c07a33be
      Michal Privoznik 提交于
      There are some OSes which don't have syscall() nor
      <sys/syscall.h>. We already check for the header file in
      configure phase, so we just need to add check for
      HAVE_SYS_SYSCALL_H to HAVE_DECL_BPF_PROG_QUERY.
      
      While I'm at it, some header files we are including are not
      needed, so their includes can be safely dropped.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      c07a33be
  12. 15 11月, 2019 11 次提交