Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755364AbcCEMwb (ORCPT ); Sat, 5 Mar 2016 07:52:31 -0500 Received: from mail-yw0-f173.google.com ([209.85.161.173]:32990 "EHLO mail-yw0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752030AbcCEMwX (ORCPT ); Sat, 5 Mar 2016 07:52:23 -0500 Date: Sat, 5 Mar 2016 07:52:15 -0500 From: Tejun Heo To: Parav Pandit Cc: cgroups@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org, lizefan@huawei.com, Johannes Weiner , Doug Ledford , Liran Liss , "Hefty, Sean" , Jason Gunthorpe , Haggai Eran , Jonathan Corbet , james.l.morris@oracle.com, serge@hallyn.com, Or Gerlitz , Matan Barak , raindel@mellanox.com, akpm@linux-foundation.org, linux-security-module@vger.kernel.org Subject: Re: [PATCHv9 1/3] rdmacg: Added rdma cgroup controller Message-ID: <20160305125215.GC3567@htj.duckdns.org> References: <1456859137-13646-1-git-send-email-pandit.parav@gmail.com> <1456859137-13646-2-git-send-email-pandit.parav@gmail.com> <20160302173949.GG29826@mtj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 759 Lines: 22 Hello, Parav. On Sat, Mar 05, 2016 at 04:45:09PM +0530, Parav Pandit wrote: > Design that remains same from v6 to v10. > * spin lock is still fine grained at cgroup level instead of one > global shared lock among all cgroups. > In future it can be optimized further to do per cpu or using > single lock if required. > * file type enums are still present for max and current, as > read/write call to those files is already taken care by common > functions with required if/else. > * Resource limit setting is as it is, because number of devices are > in range of 1 to 4 count in most use cases (as explained in > documentation), and its not hot path. 1 and 2 are not okay. 3 is fine but resource [un]charging is not hot path? Thanks. -- tejun