diff options
| author | Garrett D'Amore <garrett@damore.org> | 2022-07-07 11:51:11 -0400 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2022-07-13 10:28:07 -0400 |
| commit | 9b664393d4fdda96221e6ea9ea95790d3c15be70 (patch) | |
| tree | 7222ee176e18a86b8b699526779e8f1f164194df /usr/src/uts/common/sys/stream.h | |
| parent | 6c489a5260bcb010bd6a712e312b0aa29cd591b8 (diff) | |
| download | illumos-joyent-9b664393d4fdda96221e6ea9ea95790d3c15be70.tar.gz | |
11328 Remove M_MULTIDATA support
Reviewed by: Dan McDonald <danmcd@mnx.io>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Robert Mustacchi <rm@fingolfin.org>
Diffstat (limited to 'usr/src/uts/common/sys/stream.h')
| -rw-r--r-- | usr/src/uts/common/sys/stream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/sys/stream.h b/usr/src/uts/common/sys/stream.h index 273116f971..ea2c3d8e9a 100644 --- a/usr/src/uts/common/sys/stream.h +++ b/usr/src/uts/common/sys/stream.h @@ -23,6 +23,7 @@ * Use is subject to license terms. * Copyright 2018 OmniOS Community Edition (OmniOSce) Association. * Copyright 2015 Joyent, Inc. All rights reserved. + * Copyright 2022 Garrett D'Amore */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ @@ -444,7 +445,7 @@ typedef struct bcache { */ #define M_DATA 0x00 /* regular data */ #define M_PROTO 0x01 /* protocol control */ -#define M_MULTIDATA 0x02 /* reserved for Multidata use only */ +#define M_MULTIDATA 0x02 /* obsolete, do not use */ /* * Control messages (regular and priority) @@ -744,7 +745,6 @@ typedef struct cmdblk { */ #define datamsg(type) \ ((type) == M_DATA || \ - (type) == M_MULTIDATA || \ (type) == M_PROTO || \ (type) == M_PCPROTO || \ (type) == M_DELAY) |
