Whamcloud - gitweb
LU-13004 ptlrpc: Allow BULK_BUF_KIOV to accept a kvec
[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         struct lustre_disk_data *ldd = &mop.mo_ldd;
48
49         char real_path[PATH_MAX] = {'\0'};
50         unsigned int mount_type;
51         int ret;
52
53         verbose = 0;
54         progname = strrchr(argv[0], '/');
55         progname = progname ? progname + 1 : argv[0];
56
57         ret = osd_init();
58         if (ret != 0) {
59                 vprint("%s: osd_init() failed to initialize: %d\n",
60                        progname, ret);
61                 return ret;
62         }
63
64         /* device is last arg */
65         mop.mo_usource = argv[argc - 1];
66
67         mop.mo_source = realpath(mop.mo_usource, real_path);
68         if (mop.mo_source == NULL) {
69                 vprint("%s: No realpath for %s\n", progname, mop.mo_usource);
70                 goto out;
71         }
72
73         /* Check whether the disk has already been formatted by mkfs.lustre */
74         ret = osd_is_lustre(mop.mo_source, &mount_type);
75         if (ret == 0)
76                 goto out;
77
78         ldd->ldd_mount_type = mount_type;
79
80         ret = osd_read_ldd(mop.mo_source, ldd);
81         if (ret != 0) {
82                 fprintf(stderr, "Failed to read previous Lustre data from %s "
83                         "(%d)\n", mop.mo_source, ret);
84                 goto out;
85         }
86
87         ret = osd_tune_lustre(mop.mo_source, &mop);
88
89 out:
90         osd_fini();
91         return ret;
92 }