diff options
author | Dean Nelson <dcn@sgi.com> | 2008-07-30 01:34:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-30 12:41:50 -0400 |
commit | ea57f80c8c0e59cfc5095f7e856ce7c8e6ac2984 (patch) | |
tree | f88345573a36c1c5c53e71f61c2cb491a1e3eaaf /drivers/misc/sgi-xp/xpc_uv.c | |
parent | 8e85c23ef04fe0d8414e0b1dc04543095282a27a (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_uv.c')
-rw-r--r-- | drivers/misc/sgi-xp/xpc_uv.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/drivers/misc/sgi-xp/xpc_uv.c b/drivers/misc/sgi-xp/xpc_uv.c index 1401b0f45dcb..2aec1dfbb3db 100644 --- a/drivers/misc/sgi-xp/xpc_uv.c +++ b/drivers/misc/sgi-xp/xpc_uv.c | |||
@@ -15,8 +15,8 @@ | |||
15 | 15 | ||
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | 17 | ||
18 | /* >>> #include <gru/grukservices.h> */ | 18 | /* !!! #include <gru/grukservices.h> */ |
19 | /* >>> uv_gpa() is defined in <gru/grukservices.h> */ | 19 | /* !!! uv_gpa() is defined in <gru/grukservices.h> */ |
20 | #define uv_gpa(_a) ((unsigned long)_a) | 20 | #define uv_gpa(_a) ((unsigned long)_a) |
21 | 21 | ||
22 | #include "xpc.h" | 22 | #include "xpc.h" |
@@ -29,16 +29,16 @@ static void | |||
29 | xpc_send_local_activate_IRQ_uv(struct xpc_partition *part) | 29 | xpc_send_local_activate_IRQ_uv(struct xpc_partition *part) |
30 | { | 30 | { |
31 | /* | 31 | /* |
32 | * >>> make our side think that the remote parition sent an activate | 32 | * !!! Make our side think that the remote parition sent an activate |
33 | * >>> message our way. Also do what the activate IRQ handler would | 33 | * !!! message our way. Also do what the activate IRQ handler would |
34 | * >>> do had one really been sent. | 34 | * !!! do had one really been sent. |
35 | */ | 35 | */ |
36 | } | 36 | } |
37 | 37 | ||
38 | static enum xp_retval | 38 | static enum xp_retval |
39 | xpc_rsvd_page_init_uv(struct xpc_rsvd_page *rp) | 39 | xpc_rsvd_page_init_uv(struct xpc_rsvd_page *rp) |
40 | { | 40 | { |
41 | /* >>> need to have established xpc_activate_mq earlier */ | 41 | /* !!! need to have established xpc_activate_mq earlier */ |
42 | rp->sn.activate_mq_gpa = uv_gpa(xpc_activate_mq); | 42 | rp->sn.activate_mq_gpa = uv_gpa(xpc_activate_mq); |
43 | return xpSuccess; | 43 | return xpSuccess; |
44 | } | 44 | } |
@@ -46,7 +46,7 @@ xpc_rsvd_page_init_uv(struct xpc_rsvd_page *rp) | |||
46 | static void | 46 | static void |
47 | xpc_increment_heartbeat_uv(void) | 47 | xpc_increment_heartbeat_uv(void) |
48 | { | 48 | { |
49 | /* >>> send heartbeat msg to xpc_heartbeating_to_mask partids */ | 49 | /* !!! send heartbeat msg to xpc_heartbeating_to_mask partids */ |
50 | } | 50 | } |
51 | 51 | ||
52 | static void | 52 | static void |
@@ -59,7 +59,7 @@ xpc_heartbeat_init_uv(void) | |||
59 | static void | 59 | static void |
60 | xpc_heartbeat_exit_uv(void) | 60 | xpc_heartbeat_exit_uv(void) |
61 | { | 61 | { |
62 | /* >>> send heartbeat_offline msg to xpc_heartbeating_to_mask partids */ | 62 | /* !!! send heartbeat_offline msg to xpc_heartbeating_to_mask partids */ |
63 | } | 63 | } |
64 | 64 | ||
65 | static void | 65 | static void |
@@ -70,9 +70,9 @@ xpc_request_partition_activation_uv(struct xpc_rsvd_page *remote_rp, | |||
70 | struct xpc_partition *part = &xpc_partitions[partid]; | 70 | struct xpc_partition *part = &xpc_partitions[partid]; |
71 | 71 | ||
72 | /* | 72 | /* |
73 | * >>> setup part structure with the bits of info we can glean from the rp | 73 | * !!! Setup part structure with the bits of info we can glean from the rp: |
74 | * >>> part->remote_rp_pa = remote_rp_pa; | 74 | * !!! part->remote_rp_pa = remote_rp_pa; |
75 | * >>> part->sn.uv.activate_mq_gpa = remote_rp->sn.activate_mq_gpa; | 75 | * !!! part->sn.uv.activate_mq_gpa = remote_rp->sn.activate_mq_gpa; |
76 | */ | 76 | */ |
77 | 77 | ||
78 | xpc_send_local_activate_IRQ_uv(part); | 78 | xpc_send_local_activate_IRQ_uv(part); |
@@ -91,7 +91,7 @@ xpc_request_partition_reactivation_uv(struct xpc_partition *part) | |||
91 | static enum xp_retval | 91 | static enum xp_retval |
92 | xpc_setup_infrastructure_uv(struct xpc_partition *part) | 92 | xpc_setup_infrastructure_uv(struct xpc_partition *part) |
93 | { | 93 | { |
94 | /* >>> this function needs fleshing out */ | 94 | /* !!! this function needs fleshing out */ |
95 | return xpUnsupported; | 95 | return xpUnsupported; |
96 | } | 96 | } |
97 | 97 | ||
@@ -102,28 +102,28 @@ xpc_setup_infrastructure_uv(struct xpc_partition *part) | |||
102 | static void | 102 | static void |
103 | xpc_teardown_infrastructure_uv(struct xpc_partition *part) | 103 | xpc_teardown_infrastructure_uv(struct xpc_partition *part) |
104 | { | 104 | { |
105 | /* >>> this function needs fleshing out */ | 105 | /* !!! this function needs fleshing out */ |
106 | return; | 106 | return; |
107 | } | 107 | } |
108 | 108 | ||
109 | static enum xp_retval | 109 | static enum xp_retval |
110 | xpc_make_first_contact_uv(struct xpc_partition *part) | 110 | xpc_make_first_contact_uv(struct xpc_partition *part) |
111 | { | 111 | { |
112 | /* >>> this function needs fleshing out */ | 112 | /* !!! this function needs fleshing out */ |
113 | return xpUnsupported; | 113 | return xpUnsupported; |
114 | } | 114 | } |
115 | 115 | ||
116 | static u64 | 116 | static u64 |
117 | xpc_get_chctl_all_flags_uv(struct xpc_partition *part) | 117 | xpc_get_chctl_all_flags_uv(struct xpc_partition *part) |
118 | { | 118 | { |
119 | /* >>> this function needs fleshing out */ | 119 | /* !!! this function needs fleshing out */ |
120 | return 0UL; | 120 | return 0UL; |
121 | } | 121 | } |
122 | 122 | ||
123 | static struct xpc_msg * | 123 | static struct xpc_msg * |
124 | xpc_get_deliverable_msg_uv(struct xpc_channel *ch) | 124 | xpc_get_deliverable_msg_uv(struct xpc_channel *ch) |
125 | { | 125 | { |
126 | /* >>> this function needs fleshing out */ | 126 | /* !!! this function needs fleshing out */ |
127 | return NULL; | 127 | return NULL; |
128 | } | 128 | } |
129 | 129 | ||