github.com/endocode/docker@v1.4.2-0.20160113120958-46eb4700391e/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  }