2004-05-20 10:09:56 +00:00
|
|
|
/*-
|
2010-09-23 12:04:12 +00:00
|
|
|
* Copyright (c) 2004-2010 Pawel Jakub Dawidek <pjd@FreeBSD.org>
|
2004-05-20 10:09:56 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2006-02-01 12:11:37 +00:00
|
|
|
*
|
2004-05-20 10:09:56 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SUBR_H_
|
|
|
|
#define _SUBR_H_
|
2005-12-07 01:38:27 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-09-23 12:04:12 +00:00
|
|
|
unsigned int g_lcm(unsigned int a, unsigned int b);
|
2005-08-19 22:13:09 +00:00
|
|
|
uint32_t bitcount32(uint32_t x);
|
2010-09-23 12:04:12 +00:00
|
|
|
int g_parse_lba(const char *lbastr, unsigned int sectorsize, off_t *sectors);
|
2004-06-16 10:44:26 +00:00
|
|
|
|
|
|
|
off_t g_get_mediasize(const char *name);
|
2010-09-23 12:04:12 +00:00
|
|
|
unsigned int g_get_sectorsize(const char *name);
|
2004-06-16 10:44:26 +00:00
|
|
|
|
2010-09-23 12:04:12 +00:00
|
|
|
int g_metadata_read(const char *name, unsigned char *md, size_t size,
|
2004-07-05 02:06:44 +00:00
|
|
|
const char *magic);
|
2010-09-23 12:04:12 +00:00
|
|
|
int g_metadata_store(const char *name, const unsigned char *md, size_t size);
|
2004-05-20 10:09:56 +00:00
|
|
|
int g_metadata_clear(const char *name, const char *magic);
|
|
|
|
|
2006-09-30 14:35:37 +00:00
|
|
|
void gctl_error(struct gctl_req *req, const char *error, ...) __printflike(2, 3);
|
|
|
|
int gctl_get_int(struct gctl_req *req, const char *pfmt, ...) __printflike(2, 3);
|
|
|
|
intmax_t gctl_get_intmax(struct gctl_req *req, const char *pfmt, ...) __printflike(2, 3);
|
|
|
|
const char *gctl_get_ascii(struct gctl_req *req, const char *pfmt, ...) __printflike(2, 3);
|
2007-01-25 11:35:27 +00:00
|
|
|
int gctl_change_param(struct gctl_req *req, const char *name, int len,
|
|
|
|
const void *value);
|
2008-06-06 22:44:03 +00:00
|
|
|
int gctl_delete_param(struct gctl_req *req, const char *name);
|
|
|
|
int gctl_has_param(struct gctl_req *req, const char *name);
|
|
|
|
|
2004-05-20 10:09:56 +00:00
|
|
|
#endif /* !_SUBR_H_ */
|