merge branch 'pr-1615'
libcontainer: intelrdt: fix a GetStats() issue LGTMs: @crosbymichael @cyphar Closes #1615
This commit is contained in:
commit
c05f6368af
|
@ -443,6 +443,11 @@ func (m *IntelRdtManager) GetPath() string {
|
||||||
|
|
||||||
// Returns statistics for Intel RDT
|
// Returns statistics for Intel RDT
|
||||||
func (m *IntelRdtManager) GetStats() (*Stats, error) {
|
func (m *IntelRdtManager) GetStats() (*Stats, error) {
|
||||||
|
// If intelRdt is not specified in config
|
||||||
|
if m.Config.IntelRdt == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
m.mu.Lock()
|
m.mu.Lock()
|
||||||
defer m.mu.Unlock()
|
defer m.mu.Unlock()
|
||||||
stats := NewStats()
|
stats := NewStats()
|
||||||
|
|
Loading…
Reference in New Issue