]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/patches/suse-2.6.27.31/patches.suse/dlm-comment-typo-fixes.patch
Reenabled linux-xen, added patches for Xen Kernel Version 2.6.27.31,
[people/teissler/ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.suse / dlm-comment-typo-fixes.patch
1 From: Joe Perches <joe@perches.com>
2 commit 2cf12c0bf261e19d9641d7b8aa220e2651a03289
3 Author: Joe Perches <joe@perches.com>
4 Date: Thu Jan 22 13:26:47 2009 -0800
5 Subject: dlm: comment typo fixes
6
7 Signed-off-by: Joe Perches <joe@perches.com>
8 Signed-off-by: David Teigland <teigland@redhat.com>
9 Signed-off-by: Coly Li <coly.li@suse.de>
10
11 diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
12 index bf09262..982314c 100644
13 --- a/fs/dlm/lowcomms.c
14 +++ b/fs/dlm/lowcomms.c
15 @@ -21,7 +21,7 @@
16 *
17 * Cluster nodes are referred to by their nodeids. nodeids are
18 * simply 32 bit numbers to the locking module - if they need to
19 - * be expanded for the cluster infrastructure then that is it's
20 + * be expanded for the cluster infrastructure then that is its
21 * responsibility. It is this layer's
22 * responsibility to resolve these into IP address or
23 * whatever it needs for inter-node communication.
24 @@ -36,9 +36,9 @@
25 * of high load. Also, this way, the sending thread can collect together
26 * messages bound for one node and send them in one block.
27 *
28 - * lowcomms will choose to use wither TCP or SCTP as its transport layer
29 + * lowcomms will choose to use either TCP or SCTP as its transport layer
30 * depending on the configuration variable 'protocol'. This should be set
31 - * to 0 (default) for TCP or 1 for SCTP. It shouldbe configured using a
32 + * to 0 (default) for TCP or 1 for SCTP. It should be configured using a
33 * cluster-wide mechanism as it must be the same on all nodes of the cluster
34 * for the DLM to function.
35 *