From patchwork Fri Apr 12 15:43:00 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Moore X-Patchwork-Id: 236137 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 039A92C00A6 for ; Sat, 13 Apr 2013 01:43:15 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755166Ab3DLPnD (ORCPT ); Fri, 12 Apr 2013 11:43:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20039 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755118Ab3DLPnB (ORCPT ); Fri, 12 Apr 2013 11:43:01 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3CFh1tF011390 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 12 Apr 2013 11:43:01 -0400 Received: from [127.0.0.1] (vpn-55-234.rdu2.redhat.com [10.10.55.234]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r3CFh0RO026507; Fri, 12 Apr 2013 11:43:00 -0400 Subject: [PATCH] lsm: export the security_skb_owned_by() function To: linux-security-module@vger.kernel.org From: Paul Moore Cc: netdev@vger.kernel.org Date: Fri, 12 Apr 2013 11:43:00 -0400 Message-ID: <20130412154300.26512.67761.stgit@localhost> User-Agent: StGit/0.16 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Another bit we missed when adding the skb_owned_by() hook. Signed-off-by: Paul Moore --- security/security.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/security/security.c b/security/security.c index 03f248b..9eebd6b 100644 --- a/security/security.c +++ b/security/security.c @@ -1294,7 +1294,7 @@ void security_skb_owned_by(struct sk_buff *skb, struct sock *sk) { security_ops->skb_owned_by(skb, sk); } - +EXPORT_SYMBOL(security_skb_owned_by); #endif /* CONFIG_SECURITY_NETWORK */ #ifdef CONFIG_SECURITY_NETWORK_XFRM