aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/sgi-xp/xpc_channel.c
diff options
context:
space:
mode:
authorDean Nelson <dcn@sgi.com>2008-07-30 01:34:14 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-30 12:41:50 -0400
commitea57f80c8c0e59cfc5095f7e856ce7c8e6ac2984 (patch)
treef88345573a36c1c5c53e71f61c2cb491a1e3eaaf /drivers/misc/sgi-xp/xpc_channel.c
parent8e85c23ef04fe0d8414e0b1dc04543095282a27a (diff)
sgi-xp: eliminate '>>>' in comments
Comments in /drivers/misc/sgi-xp has been using '>>>' as a means to draw attention to something that needs to be done or considered. To avoid colliding with git rejects, '>>>' will now be replaced by '!!!' to indicate something to do, and by '???' to indicate something to be considered. Signed-off-by: Dean Nelson <dcn@sgi.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/sgi-xp/xpc_channel.c')
-rw-r--r--drivers/misc/sgi-xp/xpc_channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/sgi-xp/xpc_channel.c b/drivers/misc/sgi-xp/xpc_channel.c
index 1c73423665bd..f1afc0a7c33f 100644
--- a/drivers/misc/sgi-xp/xpc_channel.c
+++ b/drivers/misc/sgi-xp/xpc_channel.c
@@ -129,7 +129,7 @@ xpc_process_disconnect(struct xpc_channel *ch, unsigned long *irq_flags)
129 129
130 /* wake those waiting for notify completion */ 130 /* wake those waiting for notify completion */
131 if (atomic_read(&ch->n_to_notify) > 0) { 131 if (atomic_read(&ch->n_to_notify) > 0) {
132 /* >>> we do callout while holding ch->lock */ 132 /* we do callout while holding ch->lock, callout can't block */
133 xpc_notify_senders_of_disconnect(ch); 133 xpc_notify_senders_of_disconnect(ch);
134 } 134 }
135 135