]> git.proxmox.com Git - mirror_spl.git/blame - modules/spl/spl-generic.c
Go through and add a header with the proper UCRL number.
[mirror_spl.git] / modules / spl / spl-generic.c
CommitLineData
715f6251 1/*
2 * This file is part of the SPL: Solaris Porting Layer.
3 *
4 * Copyright (c) 2008 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * UCRL-CODE-235197
11 *
12 * This is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
14c5326c 27#include <sys/sysmacros.h>
af828292 28#include <sys/vmsystm.h>
29#include <sys/vnode.h>
c19c06f3 30#include <sys/kmem.h>
9ab1ac14 31#include <sys/mutex.h>
8d0f1ee9 32#include <sys/debug.h>
57d1b188 33#include <sys/proc.h>
04a479f7 34#include <sys/kstat.h>
f23e92fa 35#include <linux/kmod.h>
70eadc19 36#include "config.h"
f1b59d26 37
57d1b188 38#ifdef DEBUG_SUBSYSTEM
39#undef DEBUG_SUBSYSTEM
40#endif
8d0f1ee9 41
57d1b188 42#define DEBUG_SUBSYSTEM S_GENERIC
f23e92fa 43
3561541c 44char spl_version[16] = "SPL v" VERSION;
45
937879f1 46long spl_hostid = 0;
f23e92fa 47EXPORT_SYMBOL(spl_hostid);
8d0f1ee9 48
937879f1 49char hw_serial[11] = "<none>";
50EXPORT_SYMBOL(hw_serial);
f1b59d26 51
52int p0 = 0;
53EXPORT_SYMBOL(p0);
70eadc19 54
af828292 55vmem_t *zio_alloc_arena = NULL;
56EXPORT_SYMBOL(zio_alloc_arena);
57
77b1fe8f 58int
59highbit(unsigned long i)
60{
61 register int h = 1;
57d1b188 62 ENTRY;
77b1fe8f 63
64 if (i == 0)
57d1b188 65 RETURN(0);
77b1fe8f 66#if BITS_PER_LONG == 64
67 if (i & 0xffffffff00000000ul) {
68 h += 32; i >>= 32;
69 }
70#endif
71 if (i & 0xffff0000) {
72 h += 16; i >>= 16;
73 }
74 if (i & 0xff00) {
75 h += 8; i >>= 8;
76 }
77 if (i & 0xf0) {
78 h += 4; i >>= 4;
79 }
80 if (i & 0xc) {
81 h += 2; i >>= 2;
82 }
83 if (i & 0x2) {
84 h += 1;
85 }
57d1b188 86 RETURN(h);
77b1fe8f 87}
88EXPORT_SYMBOL(highbit);
89
2f5d55aa 90int
91ddi_strtoul(const char *str, char **nptr, int base, unsigned long *result)
92{
93 char *end;
94 return (*result = simple_strtoul(str, &end, base));
95}
96EXPORT_SYMBOL(ddi_strtoul);
97
8d0f1ee9 98static int
57d1b188 99set_hostid(void)
8d0f1ee9 100{
f23e92fa 101 char sh_path[] = "/bin/sh";
102 char *argv[] = { sh_path,
103 "-c",
57d1b188 104 "/usr/bin/hostid >/proc/sys/spl/hostid",
f23e92fa 105 NULL };
106 char *envp[] = { "HOME=/",
107 "TERM=linux",
108 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
109 NULL };
8d0f1ee9 110
57d1b188 111 /* Doing address resolution in the kernel is tricky and just
937879f1 112 * not a good idea in general. So to set the proper 'hw_serial'
57d1b188 113 * use the usermodehelper support to ask '/bin/sh' to run
114 * '/usr/bin/hostid' and redirect the result to /proc/sys/spl/hostid
115 * for us to use. It's a horific solution but it will do for now.
116 */
117 return call_usermodehelper(sh_path, argv, envp, 1);
118}
8d0f1ee9 119
57d1b188 120static int __init spl_init(void)
121{
122 int rc = 0;
f23e92fa 123
57d1b188 124 if ((rc = debug_init()))
18c9eadf 125 return rc;
f23e92fa 126
8d0f1ee9 127 if ((rc = kmem_init()))
57d1b188 128 GOTO(out , rc);
8d0f1ee9 129
9ab1ac14 130 if ((rc = spl_mutex_init()))
131 GOTO(out2 , rc);
132
8d0f1ee9 133 if ((rc = vn_init()))
9ab1ac14 134 GOTO(out3, rc);
8d0f1ee9 135
57d1b188 136 if ((rc = proc_init()))
9ab1ac14 137 GOTO(out4, rc);
af828292 138
04a479f7 139 if ((rc = kstat_init()))
140 GOTO(out5, rc);
141
57d1b188 142 if ((rc = set_hostid()))
04a479f7 143 GOTO(out6, rc = -EADDRNOTAVAIL);
f23e92fa 144
937879f1 145 printk("SPL: Loaded Solaris Porting Layer v%s\n", VERSION);
57d1b188 146 RETURN(rc);
04a479f7 147out6:
148 kstat_fini();
9ab1ac14 149out5:
57d1b188 150 proc_fini();
9ab1ac14 151out4:
57d1b188 152 vn_fini();
9ab1ac14 153out3:
154 spl_mutex_fini();
8d0f1ee9 155out2:
57d1b188 156 kmem_fini();
8d0f1ee9 157out:
57d1b188 158 debug_fini();
8d0f1ee9 159
57d1b188 160 printk("SPL: Failed to Load Solaris Porting Layer v%s, "
161 "rc = %d\n", VERSION, rc);
18c9eadf 162 return rc;
70eadc19 163}
164
165static void spl_fini(void)
166{
57d1b188 167 ENTRY;
168
937879f1 169 printk("SPL: Unloaded Solaris Porting Layer v%s\n", VERSION);
04a479f7 170 kstat_fini();
57d1b188 171 proc_fini();
af828292 172 vn_fini();
e4f1d29f 173 kmem_fini();
57d1b188 174 debug_fini();
70eadc19 175}
176
177module_init(spl_init);
178module_exit(spl_fini);
179
180MODULE_AUTHOR("Lawrence Livermore National Labs");
181MODULE_DESCRIPTION("Solaris Porting Layer");
182MODULE_LICENSE("GPL");