summaryrefslogtreecommitdiffstats
path: root/sys/opencrypto
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2011-04-01 13:28:34 +0000
committerkib <kib@FreeBSD.org>2011-04-01 13:28:34 +0000
commiteb730d92e49e2ade0bd124e5d3b8506b02a768cb (patch)
tree3d25bcc0dd45d3d17d69535933f99529288ffdae /sys/opencrypto
parent5787512ec9b8e5299bb1c6452b7b4e869c1e0fdd (diff)
downloadFreeBSD-src-eb730d92e49e2ade0bd124e5d3b8506b02a768cb.zip
FreeBSD-src-eb730d92e49e2ade0bd124e5d3b8506b02a768cb.tar.gz
After the r219999 is merged to stable/8, rename fallocf(9) to falloc(9)
and remove the falloc() version that lacks flag argument. This is done to reduce the KPI bloat. Requested by: jhb X-MFC-note: do not
Diffstat (limited to 'sys/opencrypto')
-rw-r--r--sys/opencrypto/cryptodev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/opencrypto/cryptodev.c b/sys/opencrypto/cryptodev.c
index 6a10f9a..2c0c503 100644
--- a/sys/opencrypto/cryptodev.c
+++ b/sys/opencrypto/cryptodev.c
@@ -1109,7 +1109,7 @@ cryptoioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread
TAILQ_INIT(&fcr->csessions);
fcr->sesn = 0;
- error = falloc(td, &f, &fd);
+ error = falloc(td, &f, &fd, 0);
if (error) {
free(fcr, M_XDATA);
OpenPOWER on IntegriCloud