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_sn2.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_sn2.c')
-rw-r--r-- | drivers/misc/sgi-xp/xpc_sn2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/misc/sgi-xp/xpc_sn2.c b/drivers/misc/sgi-xp/xpc_sn2.c index 63fe59a5bfac..e42c3038203c 100644 --- a/drivers/misc/sgi-xp/xpc_sn2.c +++ b/drivers/misc/sgi-xp/xpc_sn2.c | |||
@@ -75,7 +75,7 @@ xpc_allow_IPI_ops_sn2(void) | |||
75 | int node; | 75 | int node; |
76 | int nasid; | 76 | int nasid; |
77 | 77 | ||
78 | /* >>> The following should get moved into SAL. */ | 78 | /* !!! The following should get moved into SAL. */ |
79 | if (is_shub2()) { | 79 | if (is_shub2()) { |
80 | xpc_sh2_IPI_access0_sn2 = | 80 | xpc_sh2_IPI_access0_sn2 = |
81 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS0)); | 81 | (u64)HUB_L((u64 *)LOCAL_MMR_ADDR(SH2_IPI_ACCESS0)); |
@@ -118,7 +118,7 @@ xpc_disallow_IPI_ops_sn2(void) | |||
118 | int node; | 118 | int node; |
119 | int nasid; | 119 | int nasid; |
120 | 120 | ||
121 | /* >>> The following should get moved into SAL. */ | 121 | /* !!! The following should get moved into SAL. */ |
122 | if (is_shub2()) { | 122 | if (is_shub2()) { |
123 | for_each_online_node(node) { | 123 | for_each_online_node(node) { |
124 | nasid = cnodeid_to_nasid(node); | 124 | nasid = cnodeid_to_nasid(node); |
@@ -1360,7 +1360,7 @@ xpc_teardown_infrastructure_sn2(struct xpc_partition *part) | |||
1360 | * dst must be a cacheline aligned virtual address on this partition. | 1360 | * dst must be a cacheline aligned virtual address on this partition. |
1361 | * cnt must be cacheline sized | 1361 | * cnt must be cacheline sized |
1362 | */ | 1362 | */ |
1363 | /* >>> Replace this function by call to xp_remote_memcpy() or bte_copy()? */ | 1363 | /* ??? Replace this function by call to xp_remote_memcpy() or bte_copy()? */ |
1364 | static enum xp_retval | 1364 | static enum xp_retval |
1365 | xpc_pull_remote_cachelines_sn2(struct xpc_partition *part, void *dst, | 1365 | xpc_pull_remote_cachelines_sn2(struct xpc_partition *part, void *dst, |
1366 | const void *src, size_t cnt) | 1366 | const void *src, size_t cnt) |
@@ -2242,7 +2242,7 @@ xpc_send_msg_sn2(struct xpc_channel *ch, u32 flags, void *payload, | |||
2242 | notify->key = key; | 2242 | notify->key = key; |
2243 | notify->type = notify_type; | 2243 | notify->type = notify_type; |
2244 | 2244 | ||
2245 | /* >>> is a mb() needed here? */ | 2245 | /* ??? Is a mb() needed here? */ |
2246 | 2246 | ||
2247 | if (ch->flags & XPC_C_DISCONNECTING) { | 2247 | if (ch->flags & XPC_C_DISCONNECTING) { |
2248 | /* | 2248 | /* |