From patchwork Fri May 23 12:53:05 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kinglong Mee X-Patchwork-Id: 4232411 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 8D5AD9F32B for ; Fri, 23 May 2014 12:53:38 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id BEDE420108 for ; Fri, 23 May 2014 12:53:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5F05D203A9 for ; Fri, 23 May 2014 12:53:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753236AbaEWMxa (ORCPT ); Fri, 23 May 2014 08:53:30 -0400 Received: from mail-qc0-f182.google.com ([209.85.216.182]:35098 "EHLO mail-qc0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753232AbaEWMx1 (ORCPT ); Fri, 23 May 2014 08:53:27 -0400 Received: by mail-qc0-f182.google.com with SMTP id e16so7900228qcx.41 for ; Fri, 23 May 2014 05:53:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; bh=+TOeH+ijRSAq3UmhNlJb1OD5gLGwYRQ/pm6FibKx44s=; b=zIiM35+zU/bS9MRrtfl81zFqt0OjF1Ew7Mb3Cr/J0k4DeKyYX/mCGlw7Hh1Ec/WIhf O0hHnVLvGxSLQgU0psIJ1T3UPgM/ZG+fCeLzy5nxBTXyxZIdBTJZRHh6CVAwoQ+w0iL8 uSnlKQd6tUbVyvezrwuD/m1XYioYvxp5zBuM8tuptizhlltfTHNvZ6BTor/Zi1pFzGXO UhJizID48f2AB4Rlj6j04VQpwMj1JQcl+0phBGZMLBWIyMGppmPAL2r2wLmhEFlFfs0n TR+EqZEYosIiAV42Z4TYk4A5njOJjr8JdxzKOszRFHmER+3jdtPBQLvZYqEoJyK+Amdr mEKA== X-Received: by 10.140.87.5 with SMTP id q5mr5899270qgd.43.1400849606437; Fri, 23 May 2014 05:53:26 -0700 (PDT) Received: from [192.168.31.158] ([118.117.113.227]) by mx.google.com with ESMTPSA id 91sm1883072qgp.41.2014.05.23.05.53.21 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 23 May 2014 05:53:25 -0700 (PDT) Message-ID: <537F44B1.6080507@gmail.com> Date: Fri, 23 May 2014 20:53:05 +0800 From: Kinglong Mee User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: "J. Bruce Fields" CC: Linux NFS Mailing List , kinglongmee@gmail.com Subject: [PATCH 1/5] NFSD: Cleanup unneeded including linux/user_namespace.h Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 commit 4c1e1b34d5c800ad3ac9a7e2805b0bea70ad2278 using kuid/kgid for ex_anon_uid/ex_anon_gid, user_namespace.h is not needed now, clean it. Signed-off-by: Kinglong Mee --- fs/nfsd/auth.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/nfsd/auth.c b/fs/nfsd/auth.c index 2645be4..1042325 100644 --- a/fs/nfsd/auth.c +++ b/fs/nfsd/auth.c @@ -1,7 +1,6 @@ /* Copyright (C) 1995, 1996 Olaf Kirch */ #include -#include #include "nfsd.h" #include "auth.h"