aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pty
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2016-07-21 16:34:56 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2016-07-21 16:34:56 +0000
commit9837947b07a67c89a1ae88ca883df5e0b142b618 (patch)
tree99028bdec5601f45dbfbd4586b77a286cff58778 /sys/dev/pty
parent303c356245bb3e7efab29e776b941d733a8f77bc (diff)
Notes
Diffstat (limited to 'sys/dev/pty')
-rw-r--r--sys/dev/pty/pty.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/sys/dev/pty/pty.c b/sys/dev/pty/pty.c
index 5036cb292349e..ad34e1188d5da 100644
--- a/sys/dev/pty/pty.c
+++ b/sys/dev/pty/pty.c
@@ -52,10 +52,10 @@ __FBSDID("$FreeBSD$");
* binary emulation.
*/
-static unsigned int pty_warningcnt = 1;
+static unsigned pty_warningcnt = 1;
SYSCTL_UINT(_kern, OID_AUTO, tty_pty_warningcnt, CTLFLAG_RW,
- &pty_warningcnt, 0,
- "Warnings that will be triggered upon legacy PTY allocation");
+ &pty_warningcnt, 0,
+ "Warnings that will be triggered upon legacy PTY allocation");
static int
ptydev_fdopen(struct cdev *dev, int fflags, struct thread *td, struct file *fp)
@@ -77,12 +77,7 @@ ptydev_fdopen(struct cdev *dev, int fflags, struct thread *td, struct file *fp)
}
/* Raise a warning when a legacy PTY has been allocated. */
- if (pty_warningcnt > 0) {
- pty_warningcnt--;
- log(LOG_INFO, "pid %d (%s) is using legacy pty devices%s\n",
- td->td_proc->p_pid, td->td_name,
- pty_warningcnt ? "" : " - not logging anymore");
- }
+ counted_warning(&pty_warningcnt, "is using legacy pty devices");
return (0);
}