github.com/psychoss/docker@v1.9.0/daemon/graphdriver/driver_windows.go (about)

     1  package graphdriver
     2  
     3  var (
     4  	// Slice of drivers that should be used in order
     5  	priority = []string{
     6  		"windowsfilter",
     7  		"windowsdiff",
     8  		"vfs",
     9  	}
    10  )
    11  
    12  // GetFSMagic returns the filesystem id given the path.
    13  func GetFSMagic(rootpath string) (FsMagic, error) {
    14  	// Note it is OK to return FsMagicUnsupported on Windows.
    15  	return FsMagicUnsupported, nil
    16  }