Path: blob/main/cddl/compat/opensolaris/include/devid.h
39488 views
/*1* CDDL HEADER START2*3* The contents of this file are subject to the terms of the4* Common Development and Distribution License, Version 1.0 only5* (the "License"). You may not use this file except in compliance6* with the License.7*8* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE9* or http://www.opensolaris.org/os/licensing.10* See the License for the specific language governing permissions11* and limitations under the License.12*13* When distributing Covered Code, include this CDDL HEADER in each14* file and include the License file at usr/src/OPENSOLARIS.LICENSE.15* If applicable, add the following below this CDDL HEADER, with the16* fields enclosed by brackets "[]" replaced with your own identifying17* information: Portions Copyright [yyyy] [name of copyright owner]18*19* CDDL HEADER END20*/21/*22* Copyright 2006 Sun Microsystems, Inc. All rights reserved.23* Use is subject to license terms.24*/2526#ifndef _OPENSOLARIS_DEVID_H_27#define _OPENSOLARIS_DEVID_H_2829#include <sys/param.h>30#include <sys/disk.h>31#include <stdlib.h>3233typedef struct ddi_devid {34char devid[DISK_IDENT_SIZE];35} ddi_devid_t;3637typedef struct devid_nmlist {38char devname[MAXPATHLEN];39dev_t dev;40} devid_nmlist_t;4142int devid_str_decode(char *devidstr, ddi_devid_t *retdevid,43char **retminor_name);44int devid_deviceid_to_nmlist(char *search_path, ddi_devid_t devid,45char *minor_name, devid_nmlist_t **retlist);46void devid_str_free(char *str);47void devid_free(ddi_devid_t devid);48void devid_free_nmlist(devid_nmlist_t *list);49int devid_get(int fd, ddi_devid_t *retdevid);50int devid_get_minor_name(int fd, char **retminor_name);51char *devid_str_encode(ddi_devid_t devid, char *minor_name);5253#endif /* !_OPENSOLARIS_DEVID_H_ */545556