xref: /titanic_41/usr/src/cmd/lvm/metassist/layout/layout_messages.h (revision 45916cd2fec6e79bca5dee0421bd39e3c2910d1e)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
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 2003 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef _LAYOUT_MESSAGES_H
28 #define	_LAYOUT_MESSAGES_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 
36 #include <sys/types.h>
37 
38 /*
39  * Functions to print out progress, status and error messages that
40  * are shared by layout_concat.c, layout_hsp.c, layout_mirror.c,
41  * layout_stripe.c
42  */
43 extern void print_layout_success_msg();
44 extern void print_layout_volume_msg(char *type, uint64_t nbytes);
45 extern void print_layout_explicit_msg(char *type);
46 extern void print_layout_explicit_added_msg(char *comp);
47 extern void print_layout_submirrors_msg(char *type, uint64_t nbytes, int nsubs);
48 extern void print_layout_submirrors_failed_msg(char *type, int count,
49 	int nsubs);
50 
51 extern void print_populate_volume_msg(char *type, uint64_t nbytes);
52 extern void print_populate_volume_ncomps_msg(char *type, uint64_t nbytes,
53 	int ncomps);
54 extern void print_populate_success_msg();
55 extern void print_populate_choose_slices_msg();
56 extern void print_populate_no_slices_msg();
57 
58 extern void print_no_hbas_msg();
59 extern void print_debug_failure_msg();
60 
61 extern void print_insufficient_resources_msg(char *type);
62 extern void print_insufficient_hbas_msg(int n);
63 extern void print_insufficient_disks_msg(int n);
64 extern void print_hba_insufficient_space_msg(char *name, uint64_t nbytes);
65 extern void print_insufficient_capacity_msg(uint64_t nbytes);
66 extern void print_insufficient_components_msg(int ncomp);
67 
68 #ifdef __cplusplus
69 }
70 #endif
71 
72 #endif /* _LAYOUT_MESSAGES_H */
73