Skip to content

Commit 8b5456a

Browse files
akpm00hnaz
authored andcommitted
revert-mm-mempool-only-set-__gfp_nomemalloc-if-there-are-free-elements-checkpatch-fixes
ERROR: "foo * bar" should be "foo *bar" torvalds#90: FILE: mm/mempool.c:311: +void * mempool_alloc(mempool_t *pool, gfp_t gfp_mask) total: 5 errors, 0 warnings, 52 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. ./patches/revert-mm-mempool-only-set-__gfp_nomemalloc-if-there-are-free-elements.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Michal Hocko <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 6486678 commit 8b5456a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mm/mempool.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ EXPORT_SYMBOL(mempool_resize);
308308
* fail if called from an IRQ context.)
309309
* Note: using __GFP_ZERO is not supported.
310310
*/
311-
void * mempool_alloc(mempool_t *pool, gfp_t gfp_mask)
311+
void *mempool_alloc(mempool_t *pool, gfp_t gfp_mask)
312312
{
313313
void *element;
314314
unsigned long flags;

0 commit comments

Comments
 (0)