diff options
| author | 2012-04-22 05:43:14 +0000 | |
|---|---|---|
| committer | 2012-04-22 05:43:14 +0000 | |
| commit | 06a89b59aa60d7f9c0e1ea26802b0384ef0dc14c (patch) | |
| tree | 2a68460f65d82ea3089edac4aeb664d53b5154e8 /sys/compat/linux/linux_blkio.c | |
| parent | Fix printing commands with no arguments, from Benjamin Poirier. (diff) | |
| download | wireguard-openbsd-06a89b59aa60d7f9c0e1ea26802b0384ef0dc14c.tar.xz wireguard-openbsd-06a89b59aa60d7f9c0e1ea26802b0384ef0dc14c.zip | |
Add struct proc * argument to FRELE() and FILE_SET_MATURE() in
anticipation of further changes to closef(). No binary change.
ok krw@ miod@ deraadt@
Diffstat (limited to 'sys/compat/linux/linux_blkio.c')
| -rw-r--r-- | sys/compat/linux/linux_blkio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_blkio.c b/sys/compat/linux/linux_blkio.c index 09f47187289..287ae3c7140 100644 --- a/sys/compat/linux/linux_blkio.c +++ b/sys/compat/linux/linux_blkio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_blkio.c,v 1.8 2010/05/18 04:41:14 dlg Exp $ */ +/* $OpenBSD: linux_blkio.c,v 1.9 2012/04/22 05:43:14 guenther Exp $ */ /* $NetBSD: linux_blkio.c,v 1.3 2001/01/18 17:48:04 tv Exp $ */ /* @@ -118,6 +118,6 @@ linux_ioctl_blkio(struct proc *p, struct linux_sys_ioctl_args *uap, error = ENOTTY; } - FRELE(fp); + FRELE(fp, p); return error; } |
