From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752464AbcAGU2Z (ORCPT ); Thu, 7 Jan 2016 15:28:25 -0500 Received: from mail-yk0-f170.google.com ([209.85.160.170]:36855 "EHLO mail-yk0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751534AbcAGU2U (ORCPT ); Thu, 7 Jan 2016 15:28:20 -0500 Date: Thu, 7 Jan 2016 15:28:18 -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: [PATCHv1 3/6] rdmacg: implements rdma cgroup Message-ID: <20160107202818.GF1898@mtj.duckdns.org> References: <1452020286-9508-1-git-send-email-pandit.parav@gmail.com> <1452020286-9508-4-git-send-email-pandit.parav@gmail.com> <20160105220128.GJ5995@mtj.duckdns.org> <20160107152936.GE29797@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 Hello, Parav. On Fri, Jan 08, 2016 at 01:55:09AM +0530, Parav Pandit wrote: ... > Above functionality is achieved, by maintaining the map this tgid and > associated original cgroup at try_charge(), uncharge() time. Hmmm, what happens after the following? 1. A process allocates some rdma resources and get registered on the hash table. 2. The process gets migrated to a different cgroup. 3. The process allocates more rdma resources. Which cgroup would the resources from #3 be attributed to? > In alternate method, > Its simple to store the pointer of rdma_cgroup structure in the IB > resource structure and hold on reference count to rdma_cgroup. > so that when its freed, uncharge_resource can accept rdma_cgroup > structure pointer. That'd be a lot more in line with how other controllers behave. Thanks. -- tejun