The patch titled Subject: hugetlb_cgroup: convert comma to semicolon has been removed from the -mm tree. Its filename was hugetlb_cgroup-convert-comma-to-semicolon.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Xu Wang <vulab@xxxxxxxxxxx> Subject: hugetlb_cgroup: convert comma to semicolon Replace a comma between expression statements by a semicolon. Link: http://lkml.kernel.org/r/20200818064333.21759-1-vulab@xxxxxxxxxxx Fixes: faced7e0806cf4 ("mm: hugetlb controller for cgroups v2") Signed-off-by: Xu Wang <vulab@xxxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Cc: Giuseppe Scrivano <gscrivan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/hugetlb_cgroup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/mm/hugetlb_cgroup.c~hugetlb_cgroup-convert-comma-to-semicolon +++ a/mm/hugetlb_cgroup.c @@ -655,7 +655,7 @@ static void __init __hugetlb_cgroup_file snprintf(cft->name, MAX_CFTYPE_NAME, "%s.events", buf); cft->private = MEMFILE_PRIVATE(idx, 0); cft->seq_show = hugetlb_events_show; - cft->file_offset = offsetof(struct hugetlb_cgroup, events_file[idx]), + cft->file_offset = offsetof(struct hugetlb_cgroup, events_file[idx]); cft->flags = CFTYPE_NOT_ON_ROOT; /* Add the events.local file */ @@ -664,7 +664,7 @@ static void __init __hugetlb_cgroup_file cft->private = MEMFILE_PRIVATE(idx, 0); cft->seq_show = hugetlb_events_local_show; cft->file_offset = offsetof(struct hugetlb_cgroup, - events_local_file[idx]), + events_local_file[idx]); cft->flags = CFTYPE_NOT_ON_ROOT; /* NULL terminate the last cft */ _ Patches currently in -mm which might be from vulab@xxxxxxxxxxx are