On Sat, 9 Aug 2014, Aneesh Kumar K.V wrote: > > diff --git a/mm/hugetlb_cgroup.c b/mm/hugetlb_cgroup.c > > --- a/mm/hugetlb_cgroup.c > > +++ b/mm/hugetlb_cgroup.c > > @@ -275,6 +275,7 @@ static ssize_t hugetlb_cgroup_write(struct kernfs_open_file *of, > > ret = res_counter_memparse_write_strategy(buf, &val); > > if (ret) > > break; > > + val = ALIGN(val, 1ULL << huge_page_shift(&hstates[idx])); > > Do we really need ULL ? max value should fit in unsigned long right ? > I usually just go for type agreement. > > ret = res_counter_set_limit(&h_cg->hugepage[idx], val); > > break; > > default: > > -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>