]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/nandfs/mksnap.c
Remove spurious newline
[FreeBSD/FreeBSD.git] / sbin / nandfs / mksnap.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2012 The FreeBSD Foundation
5  * All rights reserved.
6  *
7  * This software was developed by Semihalf under sponsorship
8  * from the FreeBSD Foundation.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 #include <sys/types.h>
36
37 #include <stdio.h>
38 #include <sysexits.h>
39
40 #include <fs/nandfs/nandfs_fs.h>
41 #include <libnandfs.h>
42
43 #include "nandfs.h"
44
45 static void
46 mksnap_usage(void)
47 {
48
49         fprintf(stderr, "usage:\n");
50         fprintf(stderr, "\tmksnap node\n");
51 }
52
53 int
54 nandfs_mksnap(int argc, char **argv)
55 {
56         struct nandfs fs;
57         uint64_t cpno;
58         int error;
59
60         if (argc != 1) {
61                 mksnap_usage();
62                 return (EX_USAGE);
63         }
64
65         nandfs_init(&fs, argv[0]);
66         error = nandfs_open(&fs);
67         if (error == -1) {
68                 fprintf(stderr, "nandfs_open: %s\n", nandfs_errmsg(&fs));
69                 goto out;
70         }
71
72         error = nandfs_make_snap(&fs, &cpno);
73         if (error == -1)
74                 fprintf(stderr, "nandfs_make_snap: %s\n", nandfs_errmsg(&fs));
75         else
76                 printf("%jd\n", cpno);
77
78 out:
79         nandfs_close(&fs);
80         nandfs_destroy(&fs);
81         return (error);
82 }