Whamcloud - gitweb
LU-10966 utils: Fix `lfs check` documentation and arguments
[fs/lustre-release.git] / lustre / utils / l_tunedisk.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2018, Intel Corporation.
24  */
25
26
27 #if HAVE_CONFIG_H
28 #  include "config.h"
29 #endif /* HAVE_CONFIG_H */
30
31 #ifndef _GNU_SOURCE
32 #define _GNU_SOURCE
33 #endif
34 #include <stdlib.h>
35 #include <stdio.h>
36
37 #include "mount_utils.h"
38 int     verbose;
39 char    *progname;
40
41
42 int main(int argc, char *const argv[])
43 {
44         struct mount_opts mop = {
45                 .mo_max_sectors_kb = -1
46         };
47         char real_path[PATH_MAX] = {'\0'};
48         unsigned int mount_type;
49         int ret;
50
51         verbose = 0;
52         progname = strrchr(argv[0], '/');
53         progname = progname ? progname + 1 : argv[0];
54
55         ret = osd_init();
56         if (ret != 0) {
57                 vprint("%s: osd_init() failed to initialize: %d\n",
58                        progname, ret);
59                 return ret;
60         }
61
62         /* device is last arg */
63         mop.mo_usource = argv[argc - 1];
64
65         mop.mo_source = realpath(mop.mo_usource, real_path);
66         if (mop.mo_source == NULL) {
67                 vprint("%s: No realpath for %s\n", progname, mop.mo_usource);
68                 goto out;
69         }
70
71         /* Check whether the disk has already been formatted by mkfs.lustre */
72         ret = osd_is_lustre(mop.mo_source, &mount_type);
73         if (ret == 0)
74                 goto out;
75
76         ret = osd_tune_lustre(mop.mo_source, &mop);
77
78 out:
79         osd_fini();
80         return ret;
81 }