Lines Matching full:program

20 .Nm zfs-program
24 .Cm program
33 The ZFS channel program interface allows ZFS administrative operations to be
37 A library of ZFS calls is made available to channel program scripts.
40 A modified version of the Lua 5.2 interpreter is used to run channel program
45 The channel program given by
54 Display channel program output in JSON format.
56 channel program encountered an error.
59 Executes a read-only channel program, which runs faster.
60 The program cannot change on-disk state by calling functions from the
62 The program can be used to gather information such as properties and
65 channel program can complete.
68 If a channel program executes more than the specified number of instructions,
74 If a channel program attempts to allocate more memory than the given limit, it
85 A channel program can be invoked either from the command line, or via a library
90 Arguments passed to the channel program are converted to a Lua table.
100 passed to the channel program, which is accessible via the same
113 in a C array passed to a channel program will be stored in
122 channel program script, but attempting to return more than one value from the
123 top level of the channel program is not permitted and will throw an error.
133 Channel program fully executed with return value:
140 If the channel program encounters a fatal error while running, a non-zero exit
146 If a fatal error is returned, the channel program may have not executed at all,
150 If the channel program exhausts an instruction or memory limit, a fatal error
151 will be generated and the program will be stopped, leaving the program partially
155 channel program are deterministic when run against the same inputs and
156 filesystem state, as long as a channel program has run successfully once, you
159 If a channel program attempts to return too large a value, the program will
164 return an error code and the channel program continues executing.
170 When invoking a channel program via the libzfs interface, it is necessary to
175 A Lua table which is returned from the channel program will be recursively
249 If it fails, it returns an error code and the channel program continues
302 That is, in a channel program running on rpool,
573 The following channel program recursively destroys a filesystem and all its
590 A more verbose and robust version of the same channel program, which