]> git.notmuchmail.org Git - notmuch/blob - test/corpora/lkml/cur/1382298770.001732:2,
Import notmuch_0.27.orig.tar.gz
[notmuch] / test / corpora / lkml / cur / 1382298770.001732:2,
1 From: Suresh Jayaraman <sjayaraman@suse.de>
2 Subject: [RFC][PATCH 02/10] cifs: guard cifsglob.h against multiple inclusion
3 Date: Tue, 22 Jun 2010 20:52:50 +0530
4 Lines: 36
5 Message-ID: <1277220170-3442-1-git-send-email-sjayaraman@suse.de>
6 References: <yes>
7 Cc: linux-cifs@vger.kernel.org, linux-fsdevel@vger.kernel.org,
8         linux-kernel@vger.kernel.org, David Howells <dhowells@redhat.com>
9 To: Steve French <smfrench@gmail.com>
10 X-From: linux-fsdevel-owner@vger.kernel.org Tue Jun 22 17:43:39 2010
11 Return-path: <linux-fsdevel-owner@vger.kernel.org>
12 Envelope-to: lnx-linux-fsdevel@lo.gmane.org
13 Received: from vger.kernel.org ([209.132.180.67])
14         by lo.gmane.org with esmtp (Exim 4.69)
15         (envelope-from <linux-fsdevel-owner@vger.kernel.org>)
16         id 1OR5dT-0007sB-18
17         for lnx-linux-fsdevel@lo.gmane.org; Tue, 22 Jun 2010 17:43:39 +0200
18 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
19         id S1752441Ab0FVPn3 (ORCPT <rfc822;lnx-linux-fsdevel@m.gmane.org>);
20         Tue, 22 Jun 2010 11:43:29 -0400
21 Received: from victor.provo.novell.com ([137.65.250.26]:41538 "EHLO
22         victor.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org
23         with ESMTP id S1751889Ab0FVPn2 (ORCPT
24         <rfc822;groupwise-SJayaraman@novell.com:0:0>);
25         Tue, 22 Jun 2010 11:43:28 -0400
26 Received: from localhost (prv-ext-foundry1int.gns.novell.com [137.65.251.240])
27         by victor.provo.novell.com with ESMTP; Tue, 22 Jun 2010 09:22:52 -0600
28 X-Mailer: git-send-email 1.6.4.2
29 In-Reply-To: <yes>
30 Sender: linux-fsdevel-owner@vger.kernel.org
31 Precedence: bulk
32 List-ID: <linux-fsdevel.vger.kernel.org>
33 X-Mailing-List: linux-fsdevel@vger.kernel.org
34 Archived-At: <http://permalink.gmane.org/gmane.linux.kernel/1001758>
35
36 Add conditional compile macros to guard the header file against multiple
37 inclusion.
38
39 Signed-off-by: Suresh Jayaraman <sjayaraman@suse.de>
40 ---
41  fs/cifs/cifsglob.h |    5 +++++
42  1 files changed, 5 insertions(+), 0 deletions(-)
43
44 diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
45 index a88479c..6b2c39d 100644
46 --- a/fs/cifs/cifsglob.h
47 +++ b/fs/cifs/cifsglob.h
48 @@ -16,6 +16,9 @@
49   *   the GNU Lesser General Public License for more details.
50   *
51   */
52 +#ifndef _CIFS_GLOB_H
53 +#define _CIFS_GLOB_H
54 +
55  #include <linux/in.h>
56  #include <linux/in6.h>
57  #include <linux/slab.h>
58 @@ -733,3 +736,5 @@ GLOBAL_EXTERN unsigned int cifs_min_small;  /* min size of small buf pool */
59  GLOBAL_EXTERN unsigned int cifs_max_pending; /* MAX requests at once to server*/
60  
61  extern const struct slow_work_ops cifs_oplock_break_ops;
62 +
63 +#endif /* _CIFS_GLOB_H */
64 -- 
65 1.6.4.2
66
67 --
68 To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
69 the body of a message to majordomo@vger.kernel.org
70 More majordomo info at  http://vger.kernel.org/majordomo-info.html
71
72
73