File: devicelayerkind.go

package info (click to toggle)
golang-github-linbit-golinstor 0.55.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 480 kB
  • sloc: makefile: 11
file content (14 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package devicelayerkind

type DeviceLayerKind string

const (
	Drbd       DeviceLayerKind = "DRBD"
	Luks       DeviceLayerKind = "LUKS"
	Storage    DeviceLayerKind = "STORAGE"
	Nvme       DeviceLayerKind = "NVME"
	Exos       DeviceLayerKind = "EXOS"
	Writecache DeviceLayerKind = "WRITECACHE"
	Cache      DeviceLayerKind = "CACHE"
	Bcache     DeviceLayerKind = "BCACHE"
)