OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zfs
(Results
1 - 25
of
86
) sorted by relevancy
1
2
3
4
/src/external/cddl/osnet/dist/lib/pyzfs/common/
groupspace.py
25
import
zfs
.userspace
27
do_groupspace =
zfs
.userspace.do_userspace
unallow.py
25
import
zfs
.allow
27
do_unallow =
zfs
.allow.do_allow
holds.py
25
"""This module implements the "
zfs
holds" subcommand.
26
The only public interface is the
zfs
.holds.do_holds() function."""
32
import
zfs
.util
33
import
zfs
.dataset
34
import
zfs
.table
36
_ =
zfs
.util._
39
"""Implements the "
zfs
holds" subcommand."""
44
parser.exit("
zfs
: error: " + msg)
50
parser = optparse.OptionParser(usage=u, prog="
zfs
")
64
t =
zfs
.table.Table(fields, rjustfields)
[
all
...]
dataset.py
25
"""Implements the Dataset class, providing methods for manipulating
ZFS
26
datasets. Also implements the Property class, which describes
ZFS
29
import
zfs
.ioctl
30
import
zfs
.util
33
_ =
zfs
.util._
36
"""This class represents a
ZFS
property. It contains
44
__repr__ =
zfs
.util.default_repr
48
from
zfs
.ioctl.get_proptable, which should match the
68
"
zfs
allow"."""
72
for name, t in
zfs
.ioctl.get_proptable().iteritems()
[
all
...]
userspace.py
25
"""This module implements the "
zfs
userspace" and "
zfs
groupspace" subcommands.
26
The only public interface is the
zfs
.userspace.do_userspace() function."""
34
import
zfs
.util
35
import
zfs
.ioctl
36
import
zfs
.dataset
37
import
zfs
.table
39
_ =
zfs
.util._
134
v[field] =
zfs
.util.nicenum(value)
137
"""Implements the "
zfs
userspace" and "zfs groupspace" subcommands.""
[
all
...]
allow.py
26
"""This module implements the "
zfs
allow" and "
zfs
unallow" subcommands.
27
The only public interface is the
zfs
.allow.do_allow() function."""
29
import
zfs
.util
30
import
zfs
.dataset
37
_ =
zfs
.util._
44
__repr__ =
zfs
.util.default_repr
48
from
zfs
.ioctl.get_fsacl()."""
138
# perms is not set if we are doing a "
zfs
unallow <who> <fs>" to
217
mount=_("Allows mount/umount of
ZFS
datasets")
[
all
...]
/src/etc/rc.d/
mountall
19
# Mount
ZFS
filesystems first because fstab
20
# may try and null mount paths on
ZFS
.
21
if checkyesno
zfs
; then
22
zfs
mount -a
23
zfs
share -a
36
# Unmount
ZFS
file systems.
37
if checkyesno
zfs
; then
38
zfs
unshare -a
39
zfs
unmount -a
44
load_rc_config_var
zfs
zf
[
all
...]
mountcritlocal
22
if checkyesno
zfs
; then
29
load_rc_config_var
zfs
zfs
zfs
3
# $NetBSD:
zfs
,v 1.6 2021/08/03 05:15:20 mlelstv Exp $
6
# PROVIDE:
zfs
12
name="
zfs
"
19
if [ -x /sbin/
zfs
]; then
20
# Get
ZFS
module loaded (and thereby, zvols created).
21
/sbin/
zfs
list > /dev/null 2>&1
23
warn "
zfs
module may not have loaded, may not be present in the kernel, or /dev/
zfs
may be missing"
31
if [ -x /sbin/
zfs
]; then
32
modunload
zfs
[
all
...]
mountd
22
if checkyesno
zfs
; then
23
if [ ! -r /etc/
zfs
/exports ]; then
24
touch /etc/
zfs
/exports
26
rc_flags="${rc_flags} /etc/exports /etc/
zfs
/exports"
/src/sys/modules/zfs/
Makefile
5
KMOD=
zfs
/src/usr.sbin/fstyp/
Makefile
9
SRCS+=
zfs
.c
17
COPTS.
zfs
.c+= -Wno-unknown-pragmas
18
COPTS.
zfs
.c+= -Wno-sign-conversion
19
COPTS.
zfs
.c+= -Wno-strict-prototypes
25
CPPFLAGS.
zfs
.c+= -I${NETBSDSRCDIR}/external
26
CPPFLAGS.
zfs
.c+= -I${OSNET}/include
27
CPPFLAGS.
zfs
.c+= -I${OSNET}/sys
28
CPPFLAGS.
zfs
.c+= -I${OSNET}/dist/head
29
CPPFLAGS.
zfs
.c+= -I${OSNET}/dist/lib/libzpool/common
30
CPPFLAGS.
zfs
.c+= -I${OSNET}/dist/uts/commo
[
all
...]
/src/external/cddl/osnet/dist/lib/libzpool/common/
zfs.d
20
provider
zfs
{
32
#pragma D attributes Evolving/Evolving/ISA provider
zfs
provider
33
#pragma D attributes Private/Private/Unknown provider
zfs
module
34
#pragma D attributes Private/Private/Unknown provider
zfs
function
35
#pragma D attributes Evolving/Evolving/ISA provider
zfs
name
36
#pragma D attributes Evolving/Evolving/ISA provider
zfs
args
/src/tests/fs/zfs/
Makefile
6
TESTSDIR= ${TESTSBASE}/fs/
zfs
t_zpool.sh
28
server='rump_server -lrumpvfs -lrumpdev_disk -lrumpkern_solaris -lrumpfs_zfs -lrumpdev -lrumpdev_rnd -d key=/dk,hostpath=
zfs
.img,size=100m'
40
jippo on /jippo type
zfs
(local)
54
export RUMPHIJACK=blanket=/dev/
zfs
:/dk:/jippo,sysctl=yes,modctl=yes
/src/external/cddl/osnet/sbin/
Makefile
6
SUBDIR+= zpool
zfs
/src/external/cddl/osnet/dist/cmd/pyzfs/
pyzfs.py
35
import
zfs
.util
36
import
zfs
.ioctl
40
"""This is the main script for doing
zfs
subcommands. It doesn't know
41
what subcommands there are, it just looks for a module
zfs
.<subcommand>
50
zfs
.ioctl.set_cmdstr(" ".join(["
zfs
"] + sys.argv[1:]))
53
# import
zfs
.<subcommand>
54
# subfunc =
zfs
.<subcommand>.do_<subcommand>
57
__import__("
zfs
." + subcmd)
58
submod = getattr(
zfs
, subcmd
[
all
...]
/src/external/cddl/osnet/sbin/zfs/
Makefile
3
.include "../../Makefile.
zfs
"
5
PROG=
zfs
6
MAN=
zfs
.8 mount_zfs.8
9
LINKS= ${BINDIR}/
zfs
${BINDIR}/mount_zfs
31
.PATH: ${ZFSDIR}/dist/cmd/
zfs
/src/external/cddl/osnet/lib/libzfs_core/
Makefile
7
.PATH: ${.CURDIR}/../../dist/common/
zfs
8
.PATH: ${.CURDIR}/../../dist/common/fs/
zfs
24
.include "../../Makefile.
zfs
"
/src/external/cddl/osnet/dist/common/zfs/
zfs_comutil.h
29
#include <sys/fs/
zfs
.h>
zfs_deleg.h
30
#include <sys/fs/
zfs
.h>
/src/external/cddl/osnet/dist/lib/libzfs_core/common/
libzfs_core_compat.h
32
#include <sys/fs/
zfs
.h>
/src/external/cddl/osnet/lib/libzfs/
Makefile
7
.PATH: ${.CURDIR}/../../dist/common/
zfs
8
.PATH: ${.CURDIR}/../../dist/common/fs/
zfs
11
LIB=
zfs
66
.include "../../Makefile.
zfs
"
/src/external/cddl/osnet/lib/libzpool/
Makefile
8
.include "../../Makefile.
zfs
"
10
.PATH: ${.CURDIR}/../../dist/common/
zfs
13
.PATH: ${.CURDIR}/../../dist/uts/common/fs/
zfs
/src/tests/fs/
Makefile
57
TESTS_SUBDIRS+=
zfs
Completed in 23 milliseconds
1
2
3
4
Indexes created Sat May 30 00:24:47 UTC 2026