summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreivind <eivind@FreeBSD.org>1999-01-10 23:15:35 +0000
committereivind <eivind@FreeBSD.org>1999-01-10 23:15:35 +0000
commit05245124046dbb699d2c3dff3e72bf93a1af81c0 (patch)
tree91f169bfc957485ce16a7b0666ab56d287cda09e
parent02472a4767f4a66d5a339051a69661d57945b4ce (diff)
downloadFreeBSD-src-05245124046dbb699d2c3dff3e72bf93a1af81c0.zip
FreeBSD-src-05245124046dbb699d2c3dff3e72bf93a1af81c0.tar.gz
Use truncate() instead of otruncate() - step on the way to stopping
the linulator from depending on COMPAT_43.
-rw-r--r--sys/compat/linux/linux_file.c6
-rw-r--r--sys/i386/linux/linux_file.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c
index 6a80d4c..16f12ed 100644
--- a/sys/compat/linux/linux_file.c
+++ b/sys/compat/linux/linux_file.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_file.c,v 1.21 1998/07/29 16:43:00 bde Exp $
+ * $Id: linux_file.c,v 1.22 1998/10/05 16:37:36 jfieber Exp $
*/
#include "opt_compat.h"
@@ -812,7 +812,7 @@ linux_readlink(struct proc *p, struct linux_readlink_args *args)
int
linux_truncate(struct proc *p, struct linux_truncate_args *args)
{
- struct otruncate_args bsd;
+ struct truncate_args bsd;
caddr_t sg;
sg = stackgap_init();
@@ -825,6 +825,6 @@ linux_truncate(struct proc *p, struct linux_truncate_args *args)
bsd.path = args->path;
bsd.length = args->length;
- return otruncate(p, &bsd);
+ return truncate(p, &bsd);
}
diff --git a/sys/i386/linux/linux_file.c b/sys/i386/linux/linux_file.c
index 6a80d4c..16f12ed 100644
--- a/sys/i386/linux/linux_file.c
+++ b/sys/i386/linux/linux_file.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_file.c,v 1.21 1998/07/29 16:43:00 bde Exp $
+ * $Id: linux_file.c,v 1.22 1998/10/05 16:37:36 jfieber Exp $
*/
#include "opt_compat.h"
@@ -812,7 +812,7 @@ linux_readlink(struct proc *p, struct linux_readlink_args *args)
int
linux_truncate(struct proc *p, struct linux_truncate_args *args)
{
- struct otruncate_args bsd;
+ struct truncate_args bsd;
caddr_t sg;
sg = stackgap_init();
@@ -825,6 +825,6 @@ linux_truncate(struct proc *p, struct linux_truncate_args *args)
bsd.path = args->path;
bsd.length = args->length;
- return otruncate(p, &bsd);
+ return truncate(p, &bsd);
}
OpenPOWER on IntegriCloud