aboutsummaryrefslogtreecommitdiffstats
path: root/module/zfs/spa_boot.c
diff options
context:
space:
mode:
authorRichard Yao <[email protected]>2022-09-13 19:40:10 -0400
committerGitHub <[email protected]>2022-09-13 16:40:10 -0700
commitd5d10f2aef98e86d4873c435cdbd9b3ced447caf (patch)
tree392a49862db7ba31da3a7126b98dc4e2e8e38a2f /module/zfs/spa_boot.c
parent710fd1ded68491a164d85aedc69ffd4675ec5c59 (diff)
Cleanup dead spa_boot code
Unused code detected by coverity. Reviewed-by: Allan Jude <[email protected]> Reviewed-by: Ryan Moeller <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Neal Gompa <[email protected]> Signed-off-by: Richard Yao <[email protected]> Closes #13868
Diffstat (limited to 'module/zfs/spa_boot.c')
-rw-r--r--module/zfs/spa_boot.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/module/zfs/spa_boot.c b/module/zfs/spa_boot.c
deleted file mode 100644
index fddb5c3c9..000000000
--- a/module/zfs/spa_boot.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * CDDL HEADER START
- *
- * The contents of this file are subject to the terms of the
- * Common Development and Distribution License (the "License").
- * You may not use this file except in compliance with the License.
- *
- * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
- * or https://opensource.org/licenses/CDDL-1.0.
- * See the License for the specific language governing permissions
- * and limitations under the License.
- *
- * When distributing Covered Code, include this CDDL HEADER in each
- * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
- * If applicable, add the following below this CDDL HEADER, with the
- * fields enclosed by brackets "[]" replaced with your own identifying
- * information: Portions Copyright [yyyy] [name of copyright owner]
- *
- * CDDL HEADER END
- */
-
-/*
- * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
- * Use is subject to license terms.
- */
-
-#ifdef _KERNEL
-
-#include <sys/zio.h>
-#include <sys/spa_boot.h>
-#include <sys/sunddi.h>
-
-char *
-spa_get_bootprop(char *propname)
-{
- char *value;
-
- if (ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_root_node(),
- DDI_PROP_DONTPASS, propname, &value) != DDI_SUCCESS)
- return (NULL);
- return (value);
-}
-
-void
-spa_free_bootprop(char *value)
-{
- ddi_prop_free(value);
-}
-
-#endif /* _KERNEL */