diff options
author | Jakob Unterwurzacher | 2018-07-02 23:03:43 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-07-02 23:03:43 +0200 |
commit | c51fc9e07d287a95ce70b9fd8de8ea09a1d934c2 (patch) | |
tree | 0dc67e1bc2a6944c5738e3926d03943bda89e9f3 /internal/fusefrontend | |
parent | 01a078e7c0d75b0564282fc7613944be858a522f (diff) |
fusefronted: downgrade fallocate message severity
The message causes output mismatches in xfstests generic/112.
Downgrade the severity to Info so it gets disabled when using "-q".
Diffstat (limited to 'internal/fusefrontend')
-rw-r--r-- | internal/fusefrontend/file_allocate_truncate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/file_allocate_truncate.go b/internal/fusefrontend/file_allocate_truncate.go index e02fc06..74c51a7 100644 --- a/internal/fusefrontend/file_allocate_truncate.go +++ b/internal/fusefrontend/file_allocate_truncate.go @@ -39,7 +39,7 @@ var allocateWarnOnce sync.Once func (f *File) Allocate(off uint64, sz uint64, mode uint32) fuse.Status { if mode != FALLOC_DEFAULT && mode != FALLOC_FL_KEEP_SIZE { f := func() { - tlog.Warn.Printf("fallocate: only mode 0 (default) and 1 (keep size) are supported") + tlog.Info.Printf("fallocate: only mode 0 (default) and 1 (keep size) are supported") } allocateWarnOnce.Do(f) return fuse.Status(syscall.EOPNOTSUPP) |