summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2022-09-01 15:48:52 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2022-09-01 15:48:52 +0000
commite1175e3168f5aca75d9a1df43f901e6eeaf21009 (patch)
tree83301298e215cca6bd8c9dcbc09150c2f2e8ccea
parent8a42d6651d73d81ca202a7725cf48f4357e8f4e3 (diff)
d_bbsize and d_sbsize are entirely absent from the tree.
Rename them d_spare2 and d_spare3. ok otto@ as part of larger diff
-rw-r--r--sys/sys/disklabel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h
index db8656eff9c..a1f2585564c 100644
--- a/sys/sys/disklabel.h
+++ b/sys/sys/disklabel.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.h,v 1.78 2021/05/08 16:41:25 krw Exp $ */
+/* $OpenBSD: disklabel.h,v 1.79 2022/09/01 15:48:51 krw Exp $ */
/* $NetBSD: disklabel.h,v 1.41 1996/05/10 23:07:37 mark Exp $ */
/*
@@ -117,8 +117,8 @@ struct disklabel {
/* filesystem and partition information: */
u_int16_t d_npartitions; /* number of partitions in following */
- u_int32_t d_bbsize; /* size of boot area at sn0, bytes */
- u_int32_t d_sbsize; /* max size of fs superblock, bytes */
+ u_int32_t d_spare2;
+ u_int32_t d_spare3;
struct partition { /* the partition table */
u_int32_t p_size; /* number of sectors (low part) */
u_int32_t p_offset; /* starting sector (low part) */