aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2016-06-01 04:43:29 -0400
committerThomas Gleixner <tglx@linutronix.de>2016-09-05 11:20:18 -0400
commite8b61b3f2c5d3ee7804766621c91f38737d38105 (patch)
tree3b72e11e9bfc297e9a5ccb7de8b37dc35ea3d86f
parentb2d4c2edb2e4f89aaf85449dee3b87fbf0f8a4d4 (diff)
futex: Add some more function commentry
Add some more comments and reformat existing ones to kernel doc style. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reviewed-by: Darren Hart <dvhart@linux.intel.com> Link: http://lkml.kernel.org/r/1464770609-30168-1-git-send-email-bigeasy@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--kernel/futex.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/kernel/futex.c b/kernel/futex.c
index 46cb3a301bc1..2c4be467fecd 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -381,8 +381,12 @@ static inline int hb_waiters_pending(struct futex_hash_bucket *hb)
381#endif 381#endif
382} 382}
383 383
384/* 384/**
385 * We hash on the keys returned from get_futex_key (see below). 385 * hash_futex - Return the hash bucket in the global hash
386 * @key: Pointer to the futex key for which the hash is calculated
387 *
388 * We hash on the keys returned from get_futex_key (see below) and return the
389 * corresponding hash bucket in the global hash.
386 */ 390 */
387static struct futex_hash_bucket *hash_futex(union futex_key *key) 391static struct futex_hash_bucket *hash_futex(union futex_key *key)
388{ 392{
@@ -392,7 +396,12 @@ static struct futex_hash_bucket *hash_futex(union futex_key *key)
392 return &futex_queues[hash & (futex_hashsize - 1)]; 396 return &futex_queues[hash & (futex_hashsize - 1)];
393} 397}
394 398
395/* 399
400/**
401 * match_futex - Check whether two futex keys are equal
402 * @key1: Pointer to key1
403 * @key2: Pointer to key2
404 *
396 * Return 1 if two futex_keys are equal, 0 otherwise. 405 * Return 1 if two futex_keys are equal, 0 otherwise.
397 */ 406 */
398static inline int match_futex(union futex_key *key1, union futex_key *key2) 407static inline int match_futex(union futex_key *key1, union futex_key *key2)