Deleted Added
full compact
nlm_prot_server.c (182153) nlm_prot_server.c (197840)
1/*-
2 * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
3 * Authors: Doug Rabson <dfr@rabson.org>
4 * Developed with Red Inc: Alfred Perlstein <alfred@freebsd.org>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

26 */
27
28#include <sys/cdefs.h>
29#ifndef lint
30/*static char sccsid[] = "from: @(#)nlm_prot.x 1.8 87/09/21 Copyr 1987 Sun Micro";*/
31/*static char sccsid[] = "from: * @(#)nlm_prot.x 2.1 88/08/01 4.0 RPCSRC";*/
32__RCSID("$NetBSD: nlm_prot.x,v 1.6 2000/06/07 14:30:15 bouyer Exp $");
33#endif /* not lint */
1/*-
2 * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
3 * Authors: Doug Rabson <dfr@rabson.org>
4 * Developed with Red Inc: Alfred Perlstein <alfred@freebsd.org>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

26 */
27
28#include <sys/cdefs.h>
29#ifndef lint
30/*static char sccsid[] = "from: @(#)nlm_prot.x 1.8 87/09/21 Copyr 1987 Sun Micro";*/
31/*static char sccsid[] = "from: * @(#)nlm_prot.x 2.1 88/08/01 4.0 RPCSRC";*/
32__RCSID("$NetBSD: nlm_prot.x,v 1.6 2000/06/07 14:30:15 bouyer Exp $");
33#endif /* not lint */
34__FBSDID("$FreeBSD: head/sys/nlm/nlm_prot_server.c 182153 2008-08-25 09:30:27Z dfr $");
34__FBSDID("$FreeBSD: head/sys/nlm/nlm_prot_server.c 197840 2009-10-07 19:50:14Z zml $");
35
36#include <sys/param.h>
37#include <sys/malloc.h>
38#include <sys/systm.h>
39
40#include <nlm/nlm_prot.h>
41#include <nlm/nlm.h>
42

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

666
667 return (FALSE);
668}
669
670bool_t
671nlm4_granted_res_4_svc(nlm4_res *argp, void *result, struct svc_req *rqstp)
672{
673
35
36#include <sys/param.h>
37#include <sys/malloc.h>
38#include <sys/systm.h>
39
40#include <nlm/nlm_prot.h>
41#include <nlm/nlm.h>
42

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

666
667 return (FALSE);
668}
669
670bool_t
671nlm4_granted_res_4_svc(nlm4_res *argp, void *result, struct svc_req *rqstp)
672{
673
674 nlm_do_granted_res(argp, rqstp);
674 return (FALSE);
675}
676
677bool_t
678nlm4_share_4_svc(nlm4_shareargs *argp, nlm4_shareres *result, struct svc_req *rqstp)
679{
680
681 memset(result, 0, sizeof(*result));

--- 36 unchanged lines hidden ---
675 return (FALSE);
676}
677
678bool_t
679nlm4_share_4_svc(nlm4_shareargs *argp, nlm4_shareres *result, struct svc_req *rqstp)
680{
681
682 memset(result, 0, sizeof(*result));

--- 36 unchanged lines hidden ---