Deleted Added
sdiff udiff text old ( 36541 ) new ( 42060 )
full compact
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfsm_subs.h 8.2 (Berkeley) 3/30/95
37 * $Id: nfsm_subs.h,v 1.20 1998/05/31 19:00:19 peter Exp $
38 */
39
40
41#ifndef _NFS_NFSM_SUBS_H_
42#define _NFS_NFSM_SUBS_H_
43
44struct ucred;
45struct vnode;

--- 184 unchanged lines hidden (view full) ---

230 } \
231 nfsm_postop_attr((v), ttattrf); \
232 if (f) { \
233 (f) = ttretf; \
234 } else { \
235 (f) = ttattrf; \
236 } }
237
238#define nfsm_v3sattr(s, a) \
239 { (s)->sa_modetrue = nfs_true; \
240 (s)->sa_mode = vtonfsv3_mode((a)->va_mode); \
241 (s)->sa_uidfalse = nfs_false; \
242 (s)->sa_gidfalse = nfs_false; \
243 (s)->sa_sizefalse = nfs_false; \
244 (s)->sa_atimetype = txdr_unsigned(NFSV3SATTRTIME_TOCLIENT); \
245 txdr_nfsv3time(&(a)->va_atime, &(s)->sa_atime); \
246 (s)->sa_mtimetype = txdr_unsigned(NFSV3SATTRTIME_TOCLIENT); \
247 txdr_nfsv3time(&(a)->va_mtime, &(s)->sa_mtime); \
248 }
249
250#define nfsm_strsiz(s,m) \
251 { nfsm_dissect(tl,u_int32_t *,NFSX_UNSIGNED); \
252 if (((s) = fxdr_unsigned(int32_t,*tl)) > (m)) { \
253 m_freem(mrep); \
254 error = EBADRPC; \
255 goto nfsmout; \
256 } }

--- 198 unchanged lines hidden ---