/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Solaris DDI STREAMS utility routines (PSARC/2003/648).
*
* Please see the appropriate section 9F manpage for documentation.
*/
#include <sys/sysmacros.h>
void
{
return;
}
void
{
}
void
{
}
void
{
}
mblk_t *
{
}
return (NULL);
}
}
if (primtype >= 0)
return (mp);
}
{
size_t n = 0;
return (n);
}
void
{
size_t n;
dest += n;
}
}
void
{
} else {
}
}
}
void
{
else {
}
}
}
int
{
/*
* We'd like to be sure that DB_TYPE(iocmp) == M_IOCTL, but some
* nitwit routines like ttycommon_ioctl() always reset the type of
* legitimate M_IOCTL messages to M_IOCACK as a "courtesy" to the
* caller, even when the routine does not understand the M_IOCTL.
* The ttycommon_ioctl() routine does us the additional favor of
* clearing ioc_count, so we cannot rely on it having a correct
* size either (blissfully, ttycommon_ioctl() does not screw with
* TRANSPARENT messages, so we can still sanity check for that).
*/
" mblk_t", (void *)iocmp);
return (EINVAL);
}
return (EINVAL);
if (size == 0)
return (0);
return (EINVAL);
return (0);
return (EINVAL);
return (ENOMEM);
}
return (0);
}
/* Copy userdata into a new mblk_t */
mblk_t *
{
/* Nothing to do in these cases, so we're done */
goto done;
/*
* We will enter the loop below if iosize is 0; it will allocate an
* empty message block and call uiomove(9F) which will just return.
* We could avoid that with an extra check but would only slow
* down the much more likely case where iosize is larger than 0.
*/
do {
return (head);
}
/* uiomove(9F) either returns 0 or EFAULT */
return (NULL);
}
} while (iosize > 0);
done:
*errorp = 0;
return (head);
}