Commit 25c450ea authored by James Simmons's avatar James Simmons Committed by Greg Kroah-Hartman

staging: lustre: cleanup block comment style in kernel_comm code

Fixup the comments to the linux kernel style for the source and
headers related to the kernel_comm work.
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fb81e732
...@@ -45,11 +45,13 @@ ...@@ -45,11 +45,13 @@
*/ */
struct kuc_hdr { struct kuc_hdr {
__u16 kuc_magic; __u16 kuc_magic;
__u8 kuc_transport; /* Each new Lustre feature should use a different /* Each new Lustre feature should use a different transport */
transport */ __u8 kuc_transport;
__u8 kuc_flags; __u8 kuc_flags;
__u16 kuc_msgtype; /* Message type or opcode, transport-specific */ /* Message type or opcode, transport-specific */
__u16 kuc_msglen; /* Including header */ __u16 kuc_msgtype;
/* Including header */
__u16 kuc_msglen;
} __aligned(sizeof(__u64)); } __aligned(sizeof(__u64));
#define KUC_CHANGELOG_MSG_MAXSIZE (sizeof(struct kuc_hdr)+CR_MAXSIZE) #define KUC_CHANGELOG_MSG_MAXSIZE (sizeof(struct kuc_hdr)+CR_MAXSIZE)
......
...@@ -89,9 +89,11 @@ int libcfs_kkuc_msg_put(struct file *filp, void *payload) ...@@ -89,9 +89,11 @@ int libcfs_kkuc_msg_put(struct file *filp, void *payload)
} }
EXPORT_SYMBOL(libcfs_kkuc_msg_put); EXPORT_SYMBOL(libcfs_kkuc_msg_put);
/* Broadcast groups are global across all mounted filesystems; /*
* Broadcast groups are global across all mounted filesystems;
* i.e. registering for a group on 1 fs will get messages for that * i.e. registering for a group on 1 fs will get messages for that
* group from any fs */ * group from any fs
*/
/** A single group registration has a uid and a file pointer */ /** A single group registration has a uid and a file pointer */
struct kkuc_reg { struct kkuc_reg {
struct list_head kr_chain; struct list_head kr_chain;
...@@ -200,8 +202,10 @@ int libcfs_kkuc_group_put(unsigned int group, void *payload) ...@@ -200,8 +202,10 @@ int libcfs_kkuc_group_put(unsigned int group, void *payload)
} }
up_write(&kg_sem); up_write(&kg_sem);
/* don't return an error if the message has been delivered /*
* at least to one agent */ * don't return an error if the message has been delivered
* at least to one agent
*/
if (one_success) if (one_success)
rc = 0; rc = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment