mirror of
https://github.com/containers/podman.git
synced 2025-11-29 17:48:05 +08:00
15 lines
236 B
Go
15 lines
236 B
Go
package cgroups
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type IfPrioMap struct {
|
|
Interface string `json:"interface"`
|
|
Priority int64 `json:"priority"`
|
|
}
|
|
|
|
func (i *IfPrioMap) CgroupString() string {
|
|
return fmt.Sprintf("%s %d", i.Interface, i.Priority)
|
|
}
|