From patchwork Mon Sep 7 20:38:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Parav Pandit X-Patchwork-Id: 7137751 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 288FBBF036 for ; Mon, 7 Sep 2015 20:40:39 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 54DFD208A6 for ; Mon, 7 Sep 2015 20:40:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7649E208AF for ; Mon, 7 Sep 2015 20:40:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750897AbbIGUkd (ORCPT ); Mon, 7 Sep 2015 16:40:33 -0400 Received: from mail-pa0-f67.google.com ([209.85.220.67]:35205 "EHLO mail-pa0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752070AbbIGUkG (ORCPT ); Mon, 7 Sep 2015 16:40:06 -0400 Received: by pactg12 with SMTP id tg12so11950947pac.2; Mon, 07 Sep 2015 13:40:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=edTYYGJSAKnM7s0UNW+lozqIXbfCtyzW0A891mLc7mQ=; b=yGvCo1+p7SDvtGf+37nH6a7Y2XpkyepS9DMDfMKJnsa634750WgI8HfqykLMwh06+H ztDkjeyBJ76PaerstHTTIVXV7Lh6hyfM8OBD4qvJKyxpasy60BJxte7GvxaeJPII72dG UuLXTKK/jcKVgl07fw8Gf1uCqL3AzkWit4IhdnSokzlE00itJ6Pe/qo54/AfknrB3sSN p13q8cEiGcMUrV7DijQs45PqxFdaaKfTDeFBdIwxVGeUH86dcyYJ+3uLGMnOXh/49sKD 348JBS/u+atlKSvwYXF9IMIQsTDmREguCuyVIyNq+jSdWSkzhLmbxQzDUyhWOtRJkACe BZIA== X-Received: by 10.68.135.194 with SMTP id pu2mr50033643pbb.131.1441658405157; Mon, 07 Sep 2015 13:40:05 -0700 (PDT) Received: from server1.localdomain ([106.216.129.226]) by smtp.gmail.com with ESMTPSA id h15sm772673pdk.29.2015.09.07.13.39.59 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 07 Sep 2015 13:40:04 -0700 (PDT) From: Parav Pandit To: cgroups@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org, tj@kernel.org, lizefan@huawei.com, hannes@cmpxchg.org, dledford@redhat.com Cc: corbet@lwn.net, james.l.morris@oracle.com, serge@hallyn.com, haggaie@mellanox.com, ogerlitz@mellanox.com, matanb@mellanox.com, raindel@mellanox.com, akpm@linux-foundation.org, linux-security-module@vger.kernel.org, pandit.parav@gmail.com Subject: [PATCH 2/7] devcg: Added rdma resource tracking module. Date: Tue, 8 Sep 2015 02:08:18 +0530 Message-Id: <1441658303-18081-3-git-send-email-pandit.parav@gmail.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1441658303-18081-1-git-send-email-pandit.parav@gmail.com> References: <1441658303-18081-1-git-send-email-pandit.parav@gmail.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Added RDMA resource tracking object of device cgroup. Signed-off-by: Parav Pandit --- security/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/security/Makefile b/security/Makefile index c9bfbc8..c9ad56d 100644 --- a/security/Makefile +++ b/security/Makefile @@ -23,6 +23,7 @@ obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo/ obj-$(CONFIG_SECURITY_APPARMOR) += apparmor/ obj-$(CONFIG_SECURITY_YAMA) += yama/ obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o +obj-$(CONFIG_CGROUP_RDMA_RESOURCE) += device_rdma_cgroup.o # Object integrity file lists subdir-$(CONFIG_INTEGRITY) += integrity