diff options
author | Hendrik Brueckner <brueckner@linux.vnet.ibm.com> | 2008-10-13 19:12:48 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-21 19:59:54 -0400 |
commit | fc362e2e0efd8b652ebfb409a4e43e6189c04f6f (patch) | |
tree | 9cffc84bcc4e615ee08f0f47ff58a7131b55194a /drivers/char | |
parent | a02efb906d12c9d4eb2ab7c59049ba9545e5412d (diff) |
hvc_console: Add a hangup notifier for backends
I have added a hangup notifier that can be used by hvc console
backends to handle a tty hangup. The default irq hangup notifier
calls the notifier_del_irq() for compatibility.
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/hvc_console.c | 4 | ||||
-rw-r--r-- | drivers/char/hvc_console.h | 4 | ||||
-rw-r--r-- | drivers/char/hvc_irq.c | 5 | ||||
-rw-r--r-- | drivers/char/hvc_iseries.c | 1 | ||||
-rw-r--r-- | drivers/char/hvc_vio.c | 1 | ||||
-rw-r--r-- | drivers/char/hvc_xen.c | 1 | ||||
-rw-r--r-- | drivers/char/virtio_console.c | 1 |
7 files changed, 14 insertions, 3 deletions
diff --git a/drivers/char/hvc_console.c b/drivers/char/hvc_console.c index bf70450a49cc..5c9750ed0bc2 100644 --- a/drivers/char/hvc_console.c +++ b/drivers/char/hvc_console.c | |||
@@ -418,8 +418,8 @@ static void hvc_hangup(struct tty_struct *tty) | |||
418 | 418 | ||
419 | spin_unlock_irqrestore(&hp->lock, flags); | 419 | spin_unlock_irqrestore(&hp->lock, flags); |
420 | 420 | ||
421 | if (hp->ops->notifier_del) | 421 | if (hp->ops->notifier_hangup) |
422 | hp->ops->notifier_del(hp, hp->data); | 422 | hp->ops->notifier_hangup(hp, hp->data); |
423 | 423 | ||
424 | while(temp_open_count) { | 424 | while(temp_open_count) { |
425 | --temp_open_count; | 425 | --temp_open_count; |
diff --git a/drivers/char/hvc_console.h b/drivers/char/hvc_console.h index 9790201718ae..ec0e9bb0e5e6 100644 --- a/drivers/char/hvc_console.h +++ b/drivers/char/hvc_console.h | |||
@@ -65,9 +65,10 @@ struct hv_ops { | |||
65 | int (*get_chars)(uint32_t vtermno, char *buf, int count); | 65 | int (*get_chars)(uint32_t vtermno, char *buf, int count); |
66 | int (*put_chars)(uint32_t vtermno, const char *buf, int count); | 66 | int (*put_chars)(uint32_t vtermno, const char *buf, int count); |
67 | 67 | ||
68 | /* Callbacks for notification. Called in open and close */ | 68 | /* Callbacks for notification. Called in open, close and hangup */ |
69 | int (*notifier_add)(struct hvc_struct *hp, int irq); | 69 | int (*notifier_add)(struct hvc_struct *hp, int irq); |
70 | void (*notifier_del)(struct hvc_struct *hp, int irq); | 70 | void (*notifier_del)(struct hvc_struct *hp, int irq); |
71 | void (*notifier_hangup)(struct hvc_struct *hp, int irq); | ||
71 | }; | 72 | }; |
72 | 73 | ||
73 | /* Register a vterm and a slot index for use as a console (console_init) */ | 74 | /* Register a vterm and a slot index for use as a console (console_init) */ |
@@ -86,6 +87,7 @@ void hvc_kick(void); | |||
86 | /* default notifier for irq based notification */ | 87 | /* default notifier for irq based notification */ |
87 | extern int notifier_add_irq(struct hvc_struct *hp, int data); | 88 | extern int notifier_add_irq(struct hvc_struct *hp, int data); |
88 | extern void notifier_del_irq(struct hvc_struct *hp, int data); | 89 | extern void notifier_del_irq(struct hvc_struct *hp, int data); |
90 | extern void notifier_hangup_irq(struct hvc_struct *hp, int data); | ||
89 | 91 | ||
90 | 92 | ||
91 | #if defined(CONFIG_XMON) && defined(CONFIG_SMP) | 93 | #if defined(CONFIG_XMON) && defined(CONFIG_SMP) |
diff --git a/drivers/char/hvc_irq.c b/drivers/char/hvc_irq.c index 73a59cdb8947..d09e5688d449 100644 --- a/drivers/char/hvc_irq.c +++ b/drivers/char/hvc_irq.c | |||
@@ -42,3 +42,8 @@ void notifier_del_irq(struct hvc_struct *hp, int irq) | |||
42 | free_irq(irq, hp); | 42 | free_irq(irq, hp); |
43 | hp->irq_requested = 0; | 43 | hp->irq_requested = 0; |
44 | } | 44 | } |
45 | |||
46 | void notifier_hangup_irq(struct hvc_struct *hp, int irq) | ||
47 | { | ||
48 | notifier_del_irq(hp, irq); | ||
49 | } | ||
diff --git a/drivers/char/hvc_iseries.c b/drivers/char/hvc_iseries.c index b71c610fe5ae..b74a2f8ab908 100644 --- a/drivers/char/hvc_iseries.c +++ b/drivers/char/hvc_iseries.c | |||
@@ -202,6 +202,7 @@ static struct hv_ops hvc_get_put_ops = { | |||
202 | .put_chars = put_chars, | 202 | .put_chars = put_chars, |
203 | .notifier_add = notifier_add_irq, | 203 | .notifier_add = notifier_add_irq, |
204 | .notifier_del = notifier_del_irq, | 204 | .notifier_del = notifier_del_irq, |
205 | .notifier_hangup = notifier_hangup_irq, | ||
205 | }; | 206 | }; |
206 | 207 | ||
207 | static int __devinit hvc_vio_probe(struct vio_dev *vdev, | 208 | static int __devinit hvc_vio_probe(struct vio_dev *vdev, |
diff --git a/drivers/char/hvc_vio.c b/drivers/char/hvc_vio.c index 93f3840c1682..019e0b58593d 100644 --- a/drivers/char/hvc_vio.c +++ b/drivers/char/hvc_vio.c | |||
@@ -82,6 +82,7 @@ static struct hv_ops hvc_get_put_ops = { | |||
82 | .put_chars = hvc_put_chars, | 82 | .put_chars = hvc_put_chars, |
83 | .notifier_add = notifier_add_irq, | 83 | .notifier_add = notifier_add_irq, |
84 | .notifier_del = notifier_del_irq, | 84 | .notifier_del = notifier_del_irq, |
85 | .notifier_hangup = notifier_hangup_irq, | ||
85 | }; | 86 | }; |
86 | 87 | ||
87 | static int __devinit hvc_vio_probe(struct vio_dev *vdev, | 88 | static int __devinit hvc_vio_probe(struct vio_dev *vdev, |
diff --git a/drivers/char/hvc_xen.c b/drivers/char/hvc_xen.c index 538ceea5e7df..eba999f8598d 100644 --- a/drivers/char/hvc_xen.c +++ b/drivers/char/hvc_xen.c | |||
@@ -102,6 +102,7 @@ static struct hv_ops hvc_ops = { | |||
102 | .put_chars = write_console, | 102 | .put_chars = write_console, |
103 | .notifier_add = notifier_add_irq, | 103 | .notifier_add = notifier_add_irq, |
104 | .notifier_del = notifier_del_irq, | 104 | .notifier_del = notifier_del_irq, |
105 | .notifier_hangup = notifier_hangup_irq, | ||
105 | }; | 106 | }; |
106 | 107 | ||
107 | static int __init xen_init(void) | 108 | static int __init xen_init(void) |
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index d0f4eb6fdb7f..3fb0d2c88ba5 100644 --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c | |||
@@ -198,6 +198,7 @@ static int __devinit virtcons_probe(struct virtio_device *dev) | |||
198 | virtio_cons.put_chars = put_chars; | 198 | virtio_cons.put_chars = put_chars; |
199 | virtio_cons.notifier_add = notifier_add_vio; | 199 | virtio_cons.notifier_add = notifier_add_vio; |
200 | virtio_cons.notifier_del = notifier_del_vio; | 200 | virtio_cons.notifier_del = notifier_del_vio; |
201 | virtio_cons.notifier_hangup = notifier_del_vio; | ||
201 | 202 | ||
202 | /* The first argument of hvc_alloc() is the virtual console number, so | 203 | /* The first argument of hvc_alloc() is the virtual console number, so |
203 | * we use zero. The second argument is the parameter for the | 204 | * we use zero. The second argument is the parameter for the |