remove pkg/btrfs

This commit is contained in:
Blake Mizerany 2014-08-12 17:48:07 -07:00 committed by Yicheng Qin
parent 68b3644ac7
commit 0ecbe891b5
3 changed files with 0 additions and 122 deletions

View File

@ -1,74 +0,0 @@
// +build linux,amd64
package btrfs
import (
"fmt"
"os"
"runtime"
"syscall"
"unsafe"
"github.com/coreos/etcd/log"
)
const (
// from Linux/include/uapi/linux/magic.h
BTRFS_SUPER_MAGIC = 0x9123683E
// from Linux/include/uapi/linux/fs.h
FS_NOCOW_FL = 0x00800000
FS_IOC_GETFLAGS = 0x80086601
FS_IOC_SETFLAGS = 0x40086602
)
// IsBtrfs checks whether the file is in btrfs
func IsBtrfs(path string) bool {
// btrfs is linux-only filesystem
// exit on other platforms
if runtime.GOOS != "linux" {
return false
}
var buf syscall.Statfs_t
if err := syscall.Statfs(path, &buf); err != nil {
log.Warnf("Failed to statfs: %v", err)
return false
}
log.Debugf("The type of path %v is %v", path, buf.Type)
if buf.Type != BTRFS_SUPER_MAGIC {
return false
}
log.Infof("The path %v is in btrfs", path)
return true
}
// SetNOCOWFile sets NOCOW flag for file
func SetNOCOWFile(path string) error {
file, err := os.Open(path)
if err != nil {
return err
}
defer file.Close()
fileinfo, err := file.Stat()
if err != nil {
return err
}
if fileinfo.IsDir() {
return fmt.Errorf("skip directory")
}
if fileinfo.Size() != 0 {
return fmt.Errorf("skip nonempty file")
}
var attr int
if _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, file.Fd(), FS_IOC_GETFLAGS, uintptr(unsafe.Pointer(&attr))); errno != 0 {
return errno
}
attr |= FS_NOCOW_FL
if _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, file.Fd(), FS_IOC_SETFLAGS, uintptr(unsafe.Pointer(&attr))); errno != 0 {
return errno
}
log.Infof("Set NOCOW to path %v succeeded", path)
return nil
}

View File

@ -1,17 +0,0 @@
// +build !linux !amd64
package btrfs
import (
"fmt"
)
// IsBtrfs checks whether the file is in btrfs
func IsBtrfs(path string) bool {
return false
}
// SetNOCOWFile sets NOCOW flag for file
func SetNOCOWFile(path string) error {
return fmt.Errorf("unsupported for the platform")
}

View File

@ -1,31 +0,0 @@
package btrfs
import (
"io/ioutil"
"os"
"os/exec"
"strings"
"testing"
)
func TestSetNOCOW(t *testing.T) {
f, err := ioutil.TempFile(".", "etcdtest")
if err != nil {
t.Fatal("Failed creating temp dir")
}
name := f.Name()
f.Close()
defer os.Remove(name)
if IsBtrfs(name) {
SetNOCOWFile(name)
cmd := exec.Command("lsattr", name)
out, err := cmd.Output()
if err != nil {
t.Fatal("Failed executing lsattr")
}
if !strings.Contains(string(out), "---------------C") {
t.Fatal("Failed setting NOCOW:\n", string(out))
}
}
}