Message ID | 20210520084809.8576-7-mgorman@techsingularity.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Clean W=1 build warnings for mm/ | expand |
Mel Gorman writes: >make W=1 generates the following warning for mem_cgroup_calculate_protection > > mm/memcontrol.c:6468: warning: expecting prototype for mem_cgroup_protected(). Prototype was for mem_cgroup_calculate_protection() instead > >Commit 45c7f7e1ef17 ("mm, memcg: decouple e{low,min} state mutations from >protection checks") changed the function definition but not the associated >kerneldoc comment. > >Fixes: 45c7f7e1ef17 ("mm, memcg: decouple e{low,min} state mutations from protection checks") >Signed-off-by: Mel Gorman <mgorman@techsingularity.net> Whoops, thanks. Acked-by: Chris Down <chris@chrisdown.name> >--- > mm/memcontrol.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/mm/memcontrol.c b/mm/memcontrol.c >index 64ada9e650a5..030c1dc131ce 100644 >--- a/mm/memcontrol.c >+++ b/mm/memcontrol.c >@@ -6456,7 +6456,7 @@ static unsigned long effective_protection(unsigned long usage, > } > > /** >- * mem_cgroup_protected - check if memory consumption is in the normal range >+ * mem_cgroup_calculate_protection - check if memory consumption is in the normal range > * @root: the top ancestor of the sub-tree being checked > * @memcg: the memory cgroup to check > * >-- >2.26.2 > >
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 64ada9e650a5..030c1dc131ce 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -6456,7 +6456,7 @@ static unsigned long effective_protection(unsigned long usage, } /** - * mem_cgroup_protected - check if memory consumption is in the normal range + * mem_cgroup_calculate_protection - check if memory consumption is in the normal range * @root: the top ancestor of the sub-tree being checked * @memcg: the memory cgroup to check *
make W=1 generates the following warning for mem_cgroup_calculate_protection mm/memcontrol.c:6468: warning: expecting prototype for mem_cgroup_protected(). Prototype was for mem_cgroup_calculate_protection() instead Commit 45c7f7e1ef17 ("mm, memcg: decouple e{low,min} state mutations from protection checks") changed the function definition but not the associated kerneldoc comment. Fixes: 45c7f7e1ef17 ("mm, memcg: decouple e{low,min} state mutations from protection checks") Signed-off-by: Mel Gorman <mgorman@techsingularity.net> --- mm/memcontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)