From 8cd5f554ba37137802fc8292def4acb55a8c9624 Mon Sep 17 00:00:00 2001 From: yamt Date: Thu, 9 Dec 2004 02:18:45 +0000 Subject: [PATCH] nfsrv_commit: make cnt unsigned so that very large commit requests can be handled properly. --- sys/nfs/nfs_serv.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index 43f8b133f55b..09294bb2a59d 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -1,4 +1,4 @@ -/* $NetBSD: nfs_serv.c,v 1.92 2004/12/09 01:48:22 yamt Exp $ */ +/* $NetBSD: nfs_serv.c,v 1.93 2004/12/09 02:18:45 yamt Exp $ */ /* * Copyright (c) 1989, 1993 @@ -55,7 +55,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: nfs_serv.c,v 1.92 2004/12/09 01:48:22 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: nfs_serv.c,v 1.93 2004/12/09 02:18:45 yamt Exp $"); #include #include @@ -3159,7 +3159,8 @@ nfsrv_commit(nfsd, slp, procp, mrq) u_int32_t *tl; int32_t t1; caddr_t bpos; - int error = 0, rdonly, for_ret = 1, aft_ret = 1, cnt, cache; + int error = 0, rdonly, for_ret = 1, aft_ret = 1, cache; + uint32_t cnt; char *cp2; struct mbuf *mb, *mreq; u_quad_t frev, off, end; @@ -3177,7 +3178,7 @@ nfsrv_commit(nfsd, slp, procp, mrq) off = fxdr_hyper(tl); tl += 2; - cnt = fxdr_unsigned(int, *tl); + cnt = fxdr_unsigned(uint32_t, *tl); error = nfsrv_fhtovp(fhp, 1, &vp, cred, slp, nam, &rdonly, (nfsd->nd_flag & ND_KERBAUTH), FALSE); if (error) {