mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
8b857eef9c
* Ship Stargz Snapshotter Signed-off-by: ktock <ktokunaga.mail@gmail.com> * Bump github.com/containerd/stargz-snapshotter to v0.8.0 Signed-off-by: Kohei Tokunaga <ktokunaga.mail@gmail.com>
38 lines
667 B
Go
38 lines
667 B
Go
// Copyright 2016 the Go-FUSE Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package fuse
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
const (
|
|
FUSE_ROOT_ID = 1
|
|
|
|
FUSE_UNKNOWN_INO = 0xffffffff
|
|
|
|
CUSE_UNRESTRICTED_IOCTL = (1 << 0)
|
|
|
|
FUSE_LK_FLOCK = (1 << 0)
|
|
|
|
FUSE_IOCTL_MAX_IOV = 256
|
|
|
|
FUSE_POLL_SCHEDULE_NOTIFY = (1 << 0)
|
|
|
|
CUSE_INIT_INFO_MAX = 4096
|
|
|
|
S_IFDIR = syscall.S_IFDIR
|
|
S_IFREG = syscall.S_IFREG
|
|
S_IFLNK = syscall.S_IFLNK
|
|
S_IFIFO = syscall.S_IFIFO
|
|
|
|
CUSE_INIT = 4096
|
|
|
|
O_ANYWRITE = uint32(os.O_WRONLY | os.O_RDWR | os.O_APPEND | os.O_CREATE | os.O_TRUNC)
|
|
|
|
logicalBlockSize = 512
|
|
)
|