diff options
| author | Ben Hutchings <bhutchings@solarflare.com> | 2012-07-10 10:55:35 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-07-10 23:13:45 -0700 | 
| commit | ae86b9e3846f6fc5509dee721f2bdba1db8ab96a (patch) | |
| tree | a648bc2912a6093295380b00a3942f8a8e2fd28f /net/ceph/pagelist.c | |
| parent | 2c53040f018b6c36a46eec75b9b937aaa5f78e6d (diff) | |
| download | olio-linux-3.10-ae86b9e3846f6fc5509dee721f2bdba1db8ab96a.tar.xz olio-linux-3.10-ae86b9e3846f6fc5509dee721f2bdba1db8ab96a.zip  | |
net: Fix non-kernel-doc comments with kernel-doc start marker
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ceph/pagelist.c')
| -rw-r--r-- | net/ceph/pagelist.c | 14 | 
1 files changed, 4 insertions, 10 deletions
diff --git a/net/ceph/pagelist.c b/net/ceph/pagelist.c index 13cb409a7bb..665cd23020f 100644 --- a/net/ceph/pagelist.c +++ b/net/ceph/pagelist.c @@ -72,8 +72,7 @@ int ceph_pagelist_append(struct ceph_pagelist *pl, const void *buf, size_t len)  }  EXPORT_SYMBOL(ceph_pagelist_append); -/** - * Allocate enough pages for a pagelist to append the given amount +/* Allocate enough pages for a pagelist to append the given amount   * of data without without allocating.   * Returns: 0 on success, -ENOMEM on error.   */ @@ -95,9 +94,7 @@ int ceph_pagelist_reserve(struct ceph_pagelist *pl, size_t space)  }  EXPORT_SYMBOL(ceph_pagelist_reserve); -/** - * Free any pages that have been preallocated. - */ +/* Free any pages that have been preallocated. */  int ceph_pagelist_free_reserve(struct ceph_pagelist *pl)  {  	while (!list_empty(&pl->free_list)) { @@ -112,9 +109,7 @@ int ceph_pagelist_free_reserve(struct ceph_pagelist *pl)  }  EXPORT_SYMBOL(ceph_pagelist_free_reserve); -/** - * Create a truncation point. - */ +/* Create a truncation point. */  void ceph_pagelist_set_cursor(struct ceph_pagelist *pl,  			      struct ceph_pagelist_cursor *c)  { @@ -124,8 +119,7 @@ void ceph_pagelist_set_cursor(struct ceph_pagelist *pl,  }  EXPORT_SYMBOL(ceph_pagelist_set_cursor); -/** - * Truncate a pagelist to the given point. Move extra pages to reserve. +/* Truncate a pagelist to the given point. Move extra pages to reserve.   * This won't sleep.   * Returns: 0 on success,   *          -EINVAL if the pagelist doesn't match the trunc point pagelist  |