From: krw Date: Thu, 1 Sep 2022 15:48:51 +0000 (+0000) Subject: d_bbsize and d_sbsize are entirely absent from the tree. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9fa049c54dcb69f9b0ebca25bf9146770434a444;p=openbsd 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 --- 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) */