Print this page
8654 unused local typedef in rpc code


   8  *
   9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
  10  * or http://www.opensolaris.org/os/licensing.
  11  * See the License for the specific language governing permissions
  12  * and limitations under the License.
  13  *
  14  * When distributing Covered Code, include this CDDL HEADER in each
  15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  16  * If applicable, add the following below this CDDL HEADER, with the
  17  * fields enclosed by brackets "[]" replaced with your own identifying
  18  * information: Portions Copyright [yyyy] [name of copyright owner]
  19  *
  20  * CDDL HEADER END
  21  */
  22 /*
  23  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.
  25  */
  26 /*
  27  * Copyright 2012 Nexenta Systems, Inc. All rights reserved.

  28  */
  29 
  30 #include <rpc/types.h>
  31 #include <rpc/xdr.h>
  32 #include <sys/types.h>
  33 
  34 /* ARGSUSED */
  35 static bool_t
  36 x_putint32_t(XDR *xdrs, int32_t *ip)
  37 {
  38         xdrs->x_handy += BYTES_PER_XDR_UNIT;
  39         return (TRUE);
  40 }
  41 
  42 /* ARGSUSED */
  43 static bool_t
  44 x_putbytes(XDR *xdrs, char *bp, int len)
  45 {
  46         xdrs->x_handy += len;
  47         return (TRUE);


  96 }
  97 
  98 static void
  99 x_destroy(XDR *xdrs)
 100 {
 101         xdrs->x_handy = 0;
 102         if (xdrs->x_private) {
 103                 mem_free(xdrs->x_private, (uintptr_t)xdrs->x_base);
 104                 xdrs->x_private = NULL;
 105         }
 106         xdrs->x_base = 0;
 107 }
 108 
 109 unsigned int
 110 xdr_sizeof(xdrproc_t func, void *data)
 111 {
 112         XDR x;
 113         struct xdr_ops ops;
 114         bool_t stat;
 115         /* to stop ANSI-C compiler from complaining */
 116         typedef  bool_t (* dummyfunc1)(XDR *, long *);
 117         typedef  bool_t (* dummyfunc2)(XDR *, caddr_t, int);

 118         typedef  bool_t (* dummyfunc3)(XDR *, int32_t *);
 119         typedef  bool_t (* dummyfunc4)(XDR *, int, void *);
 120 
 121         ops.x_putbytes = x_putbytes;
 122         ops.x_inline = x_inline;
 123         ops.x_getpostn = x_getpostn;
 124         ops.x_setpostn = x_setpostn;
 125         ops.x_destroy = x_destroy;
 126 
 127 #if defined(_LP64) || defined(_KERNEL)
 128         ops.x_getint32 = (dummyfunc3)harmless;
 129         ops.x_putint32 = x_putint32_t;
 130 #endif
 131 
 132         /* the other harmless ones */
 133         ops.x_getbytes = (dummyfunc2)harmless;
 134         ops.x_control = (dummyfunc4)harmless;
 135 
 136         x.x_op = XDR_ENCODE;
 137         x.x_ops = &ops;
 138         x.x_handy = 0;
 139         x.x_private = (caddr_t)NULL;
 140         x.x_base = NULL;
 141 
 142         stat = func(&x, data);
 143         if (x.x_private)
 144                 mem_free(x.x_private, (uintptr_t)x.x_base);
 145         return (stat == TRUE ? (unsigned int)x.x_handy: 0);
 146 }


   8  *
   9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
  10  * or http://www.opensolaris.org/os/licensing.
  11  * See the License for the specific language governing permissions
  12  * and limitations under the License.
  13  *
  14  * When distributing Covered Code, include this CDDL HEADER in each
  15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  16  * If applicable, add the following below this CDDL HEADER, with the
  17  * fields enclosed by brackets "[]" replaced with your own identifying
  18  * information: Portions Copyright [yyyy] [name of copyright owner]
  19  *
  20  * CDDL HEADER END
  21  */
  22 /*
  23  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.
  25  */
  26 /*
  27  * Copyright 2012 Nexenta Systems, Inc. All rights reserved.
  28  * Copyright 2017 RackTop Systems.
  29  */
  30 
  31 #include <rpc/types.h>
  32 #include <rpc/xdr.h>
  33 #include <sys/types.h>
  34 
  35 /* ARGSUSED */
  36 static bool_t
  37 x_putint32_t(XDR *xdrs, int32_t *ip)
  38 {
  39         xdrs->x_handy += BYTES_PER_XDR_UNIT;
  40         return (TRUE);
  41 }
  42 
  43 /* ARGSUSED */
  44 static bool_t
  45 x_putbytes(XDR *xdrs, char *bp, int len)
  46 {
  47         xdrs->x_handy += len;
  48         return (TRUE);


  97 }
  98 
  99 static void
 100 x_destroy(XDR *xdrs)
 101 {
 102         xdrs->x_handy = 0;
 103         if (xdrs->x_private) {
 104                 mem_free(xdrs->x_private, (uintptr_t)xdrs->x_base);
 105                 xdrs->x_private = NULL;
 106         }
 107         xdrs->x_base = 0;
 108 }
 109 
 110 unsigned int
 111 xdr_sizeof(xdrproc_t func, void *data)
 112 {
 113         XDR x;
 114         struct xdr_ops ops;
 115         bool_t stat;
 116         /* to stop ANSI-C compiler from complaining */
 117         typedef  bool_t (* dummyfunc1)(XDR *, caddr_t, int);
 118         typedef  bool_t (* dummyfunc2)(XDR *, int, void *);
 119 #if defined(_LP64) || defined(_KERNEL)
 120         typedef  bool_t (* dummyfunc3)(XDR *, int32_t *);
 121 #endif
 122 
 123         ops.x_putbytes = x_putbytes;
 124         ops.x_inline = x_inline;
 125         ops.x_getpostn = x_getpostn;
 126         ops.x_setpostn = x_setpostn;
 127         ops.x_destroy = x_destroy;
 128 
 129 #if defined(_LP64) || defined(_KERNEL)
 130         ops.x_getint32 = (dummyfunc3)harmless;
 131         ops.x_putint32 = x_putint32_t;
 132 #endif
 133 
 134         /* the other harmless ones */
 135         ops.x_getbytes = (dummyfunc1)harmless;
 136         ops.x_control = (dummyfunc2)harmless;
 137 
 138         x.x_op = XDR_ENCODE;
 139         x.x_ops = &ops;
 140         x.x_handy = 0;
 141         x.x_private = (caddr_t)NULL;
 142         x.x_base = NULL;
 143 
 144         stat = func(&x, data);
 145         if (x.x_private)
 146                 mem_free(x.x_private, (uintptr_t)x.x_base);
 147         return (stat == TRUE ? (unsigned int)x.x_handy: 0);
 148 }