diff options
| author | Richard Lowe <richlowe@richlowe.net> | 2022-02-22 18:00:48 -0600 |
|---|---|---|
| committer | Richard Lowe <richlowe@richlowe.net> | 2022-02-22 18:00:48 -0600 |
| commit | 3971085411b91c5d82e278443ab68fca1946cb21 (patch) | |
| tree | 8e6d01d8aea1c3d8179a47b929ff5bfa8b42f752 /usr/src/uts/common/io/ptem.c | |
| parent | 1df45418ec3688847e142a9a2213965459ff39c7 (diff) | |
| parent | ca783257c986cddcc674ae22916a6766b98a2d36 (diff) | |
| download | illumos-joyent-3971085411b91c5d82e278443ab68fca1946cb21.tar.gz | |
Merge branch 'master' of https://github.com/illumos/illumos-gate into man/big-reorg
# Conflicts:
# usr/src/cmd/fmthard/fmthard.c
# usr/src/cmd/zoneadmd/zcons.c
# usr/src/man/man2/chmod.2
# usr/src/man/man2/close.2
# usr/src/man/man2/open.2
# usr/src/man/man3c/grantpt.3c
# usr/src/man/man3c/posix_openpt.3c
# usr/src/man/man3c/ptsname.3c
# usr/src/man/man3c/unlockpt.3c
# usr/src/man/man3utempter/utempter_add_record.3utempter
# usr/src/man/man4/Makefile
# usr/src/man/man4d/ptm.4d
# usr/src/man/man4d/pts.4d
# usr/src/man/man4d/pty.4d
# usr/src/man/man4d/zcons.4d
# usr/src/man/man4m/pckt.4m
# usr/src/man/man4m/ptem.4m
# usr/src/man/man4p/vxlan.7p
# usr/src/man/man5/Makefile
# usr/src/man/man5/bhyve_config.5
# usr/src/man/man7d/Makefile
# usr/src/man/man7p/Makefile
# usr/src/man/man8/bhyve.8
# usr/src/man/man8/dladm.8
# usr/src/man/man8/flowadm.8
# usr/src/man/man8/fmthard.8
# usr/src/man/man8/in.rlogind.8
# usr/src/man/man8/in.telnetd.8
# usr/src/man/man8/nvmeadm.8
# usr/src/man/man8/pppd.8
# usr/src/pkg/manifests/SUNWcs.man4d.inc
# usr/src/uts/common/io/zcons.c
Diffstat (limited to 'usr/src/uts/common/io/ptem.c')
| -rw-r--r-- | usr/src/uts/common/io/ptem.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/usr/src/uts/common/io/ptem.c b/usr/src/uts/common/io/ptem.c index afe14a2ad9..137f2916b5 100644 --- a/usr/src/uts/common/io/ptem.c +++ b/usr/src/uts/common/io/ptem.c @@ -401,7 +401,7 @@ ptemrput(queue_t *q, mblk_t *mp) case M_IOCACK: case M_IOCNAK: /* - * We only pass write-side ioctls through to the master that + * We only pass write-side ioctls through to the manager that * we've already ACKed or NAKed to the stream head. Thus, we * discard ones arriving from below, since they're redundant * from the point of view of modules above us. @@ -626,7 +626,7 @@ ptemwmsg(queue_t *q, mblk_t *mp) * of the M_IOCTL message is made and passed * downstream. Eventually the PCKT module, if * it has been pushed, should pick up this message. - * If the PCKT module has not been pushed the master + * If the PCKT module has not been pushed the manager * side stream head will free it. */ iocp = (struct iocblk *)mp->b_rptr; @@ -843,8 +843,9 @@ out: default: /* - * End of the line. The slave driver doesn't see any - * ioctls that we don't explicitly pass along to it. + * End of the line. The subsidiary driver doesn't see + * any ioctls that we don't explicitly pass along to + * it. */ miocnak(q, mp, 0, EINVAL); break; @@ -983,14 +984,14 @@ ptioc(queue_t *q, mblk_t *mp, int qside) (void) putnextctl1(q, M_SIG, SIGWINCH); /* * Message may have come in as an M_IOCDATA; pass it - * to the master side as an M_IOCTL. + * to the manager side as an M_IOCTL. */ mp->b_datap->db_type = M_IOCTL; if (qside == WRSIDE) { /* * Need a copy of this message to pass on to * the PCKT module, only if the M_IOCTL - * orginated from the slave side. + * orginated from the subsidiary side. */ if ((pckt_msgp = copymsg(mp)) == NULL) { miocnak(q, mp, 0, EAGAIN); @@ -1010,7 +1011,7 @@ ptioc(queue_t *q, mblk_t *mp, int qside) case TIOCSIGNAL: { /* - * This ioctl can emanate from the master side in remote + * This ioctl can emanate from the manager side in remote * mode only. */ int sig; @@ -1034,8 +1035,8 @@ ptioc(queue_t *q, mblk_t *mp, int qside) } /* - * Send an M_PCSIG message up the slave's read side and - * respond back to the master with an ACK or NAK as + * Send an M_PCSIG message up the subsidiary's read side and + * respond back to the manager with an ACK or NAK as * appropriate. */ if (putnextctl1(q, M_PCSIG, sig) == 0) { |
