Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from sm_typing import Final 

2 

3EXT_PREFIX = 'XSLocalEXT-' 

4CBT_BLOCK_SIZE = (64 * 1024) 

5CBTLOG_TAG = "cbtlog" 

6CBT_UTIL = "/usr/sbin/cbt-util" 

7 

8VG_LOCATION: Final = "/dev" 

9VG_PREFIX: Final = "VG_XenStorage-" 

10 

11# Ref counting for VDI's: we need a ref count for LV activation/deactivation 

12# on the master. 

13NS_PREFIX_LVM: Final = "lvm-"