2016-10-17 04:30:16 +00:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package overlayutils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-11-16 01:48:43 +01:00
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/graphdriver"
|
2016-10-17 04:30:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ErrDTypeNotSupported denotes that the backing filesystem doesn't support d_type.
|
|
|
|
func ErrDTypeNotSupported(driver, backingFs string) error {
|
|
|
|
msg := fmt.Sprintf("%s: the backing %s filesystem is formatted without d_type support, which leads to incorrect behavior.", driver, backingFs)
|
|
|
|
if backingFs == "xfs" {
|
|
|
|
msg += " Reformat the filesystem with ftype=1 to enable d_type support."
|
|
|
|
}
|
2017-11-16 01:48:43 +01:00
|
|
|
msg += " Backing filesystems without d_type support are not supported."
|
|
|
|
|
|
|
|
return graphdriver.NotSupportedError(msg)
|
2016-10-17 04:30:16 +00:00
|
|
|
}
|