Browse code

UPSTREAM: 30724: Add GetDeviceNameFromMount in mount_unsupported.go

Jan Safranek authored on 2016/12/01 01:54:41
Showing 1 changed files
... ...
@@ -36,6 +36,10 @@ func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error) {
36 36
 	return true, nil
37 37
 }
38 38
 
39
+func (mounter *Mounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error) {
40
+	return "", nil
41
+}
42
+
39 43
 func (mounter *SafeFormatAndMount) formatAndMount(source string, target string, fstype string, options []string) error {
40 44
 	return nil
41 45
 }