diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 2001-10-06 12:35:22 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 2001-10-06 12:35:22 +0000 |
| commit | c4e7b7e2e02a38e9e1a5859ffe5168b2d993052c (patch) | |
| tree | e340046fdfff7b7a6f4945c20508eaef6c309d05 | |
| parent | e82a5f198f22d0f9e6e9ea62ec41463664286100 (diff) | |
Notes
| -rw-r--r-- | sys/sys/disklabel.h | 5 | ||||
| -rw-r--r-- | sys/sys/diskmbr.h | 5 | ||||
| -rw-r--r-- | sys/sys/diskpc98.h | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index fe93b65dbd77..7d51a8479f2f 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -66,6 +66,11 @@ #define LABELOFFSET 64 #endif +#ifdef __ia64__ +#define LABELSECTOR 1 /* sector containing label */ +#define LABELOFFSET 0 /* offset of label in sector */ +#endif + #ifndef LABELSECTOR #define LABELSECTOR 0 /* sector containing label */ #endif diff --git a/sys/sys/diskmbr.h b/sys/sys/diskmbr.h index fe93b65dbd77..7d51a8479f2f 100644 --- a/sys/sys/diskmbr.h +++ b/sys/sys/diskmbr.h @@ -66,6 +66,11 @@ #define LABELOFFSET 64 #endif +#ifdef __ia64__ +#define LABELSECTOR 1 /* sector containing label */ +#define LABELOFFSET 0 /* offset of label in sector */ +#endif + #ifndef LABELSECTOR #define LABELSECTOR 0 /* sector containing label */ #endif diff --git a/sys/sys/diskpc98.h b/sys/sys/diskpc98.h index fe93b65dbd77..7d51a8479f2f 100644 --- a/sys/sys/diskpc98.h +++ b/sys/sys/diskpc98.h @@ -66,6 +66,11 @@ #define LABELOFFSET 64 #endif +#ifdef __ia64__ +#define LABELSECTOR 1 /* sector containing label */ +#define LABELOFFSET 0 /* offset of label in sector */ +#endif + #ifndef LABELSECTOR #define LABELSECTOR 0 /* sector containing label */ #endif |
