@@ -99,7 +99,7 @@ EXPORT_SYMBOL_GPL(eventfd_ctx_get);
99
99
* @ctx: [in] Pointer to eventfd context.
100
100
*
101
101
* The eventfd context reference must have been previously acquired either
102
- * with eventfd_ctx_get() or eventfd_ctx_fdget()) .
102
+ * with eventfd_ctx_get() or eventfd_ctx_fdget().
103
103
*/
104
104
void eventfd_ctx_put (struct eventfd_ctx * ctx )
105
105
{
@@ -146,9 +146,9 @@ static void eventfd_ctx_do_read(struct eventfd_ctx *ctx, __u64 *cnt)
146
146
* eventfd_ctx_remove_wait_queue - Read the current counter and removes wait queue.
147
147
* @ctx: [in] Pointer to eventfd context.
148
148
* @wait: [in] Wait queue to be removed.
149
- * @cnt: [out] Pointer to the 64bit conter value.
149
+ * @cnt: [out] Pointer to the 64-bit counter value.
150
150
*
151
- * Returns zero if successful, or the following error codes:
151
+ * Returns %0 if successful, or the following error codes:
152
152
*
153
153
* -EAGAIN : The operation would have blocked.
154
154
*
@@ -175,11 +175,11 @@ EXPORT_SYMBOL_GPL(eventfd_ctx_remove_wait_queue);
175
175
* eventfd_ctx_read - Reads the eventfd counter or wait if it is zero.
176
176
* @ctx: [in] Pointer to eventfd context.
177
177
* @no_wait: [in] Different from zero if the operation should not block.
178
- * @cnt: [out] Pointer to the 64bit conter value.
178
+ * @cnt: [out] Pointer to the 64-bit counter value.
179
179
*
180
- * Returns zero if successful, or the following error codes:
180
+ * Returns %0 if successful, or the following error codes:
181
181
*
182
- * -EAGAIN : The operation would have blocked but @no_wait was nonzero .
182
+ * -EAGAIN : The operation would have blocked but @no_wait was non-zero .
183
183
* -ERESTARTSYS : A signal interrupted the wait operation.
184
184
*
185
185
* If @no_wait is zero, the function might sleep until the eventfd internal
0 commit comments