1. 19 11月, 2015 22 次提交
  2. 18 11月, 2015 14 次提交
  3. 17 11月, 2015 2 次提交
    • R
      bhyve: monitor: do not override domain's privateData · 89316b2c
      Roman Bogorodskiy 提交于
      Current monitor code overrides domain object's privateData, e.g.
      in virBhyveProcessStart():
      
        vm->privateData = bhyveMonitorOpen(vm, driver);
      
      where bhyveMonitorPtr() returns bhyveMonitorPtr.
      
      This is not right thing to do, so make bhyveMonitorPtr
      a part of the bhyveDomainObjPrivate struct and change related code
      accordingly.
      89316b2c
    • A
      syntax-check: Add prohibit_space_in_label rule · c9014a0d
      Andrea Bolognani 提交于
      This guards against code such as
      
       cleanup :
      
      which is happily accepted by the compiler but does not conform
      to our style guidelines.
      c9014a0d
  4. 16 11月, 2015 1 次提交
  5. 12 11月, 2015 1 次提交
    • J
      storage: Don't assume storage pool exists for FC/SCSI refresh thread · d3fa510a
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1277781
      
      The virStoragePoolFCRefreshThread had passed a pointer to the pool obj
      in the virStoragePoolFCRefreshInfoPtr; however, we cannot assume that
      the pool exists still since we don't keep the pool lock throughout
      the duration of the thread.
      
      Therefore, instead of passing the pool obj pointer, pass the UUID of
      the pool and perform a lookup.  If found, then we can perform the
      refresh using the locked pool obj pointer; otherwise, we just exit
      the thread since the pool is now gone.
      d3fa510a