Revision ec57dfe2b5ee6a21fd1aa290d93b0109bfa6148a authored by Hans Petter Selasky on 18 June 2017, 18:09:31 UTC, committed by Hans Petter Selasky on 18 June 2017, 18:09:31 UTC
Minor code optimisation.
Avoid locking the global CUSE lock when the polling flags are zero.

Approved by:	re (kib)
1 parent 1bfabcb
Raw File
iovctl
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: iovctl
# REQUIRE: FILESYSTEMS sysctl

. /etc/rc.subr

name="iovctl"
command="/usr/sbin/iovctl"
start_cmd="iovctl_start"
stop_cmd="iovctl_stop"

run_iovctl()
{
	local _f flag

	flag=$1
	for _f in ${iovctl_files} ; do
		if [ -r ${_f} ]; then
			${command} ${flag} -f ${_f} > /dev/null
		fi
	done
}

iovctl_start()
{
	run_iovctl -C
}

iovctl_stop()
{
	run_iovctl -D
}

load_rc_config $name
run_rc_command "$1"
back to top