Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | You may distribute this file under either of the two licenses that |
| 3 | follow at your discretion. |
| 4 | */ |
| 5 | |
| 6 | /* BLURB lgpl |
| 7 | |
| 8 | Coda File System |
| 9 | Release 5 |
| 10 | |
| 11 | Copyright (c) 1987-1999 Carnegie Mellon University |
| 12 | Additional copyrights listed below |
| 13 | |
| 14 | This code is distributed "AS IS" without warranty of any kind under |
| 15 | the terms of the GNU Library General Public Licence Version 2, as |
| 16 | shown in the file LICENSE, or under the license shown below. The |
| 17 | technical and financial contributors to Coda are listed in the file |
| 18 | CREDITS. |
| 19 | |
| 20 | Additional copyrights |
| 21 | */ |
| 22 | |
| 23 | /* |
| 24 | |
| 25 | Coda: an Experimental Distributed File System |
| 26 | Release 4.0 |
| 27 | |
| 28 | Copyright (c) 1987-1999 Carnegie Mellon University |
| 29 | All Rights Reserved |
| 30 | |
| 31 | Permission to use, copy, modify and distribute this software and its |
| 32 | documentation is hereby granted, provided that both the copyright |
| 33 | notice and this permission notice appear in all copies of the |
| 34 | software, derivative works or modified versions, and any portions |
| 35 | thereof, and that both notices appear in supporting documentation, and |
| 36 | that credit is given to Carnegie Mellon University in all documents |
| 37 | and publicity pertaining to direct or indirect use of this code or its |
| 38 | derivatives. |
| 39 | |
| 40 | CODA IS AN EXPERIMENTAL SOFTWARE SYSTEM AND IS KNOWN TO HAVE BUGS, |
| 41 | SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON ALLOWS |
| 42 | FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. CARNEGIE MELLON |
| 43 | DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER |
| 44 | RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF |
| 45 | ANY DERIVATIVE WORK. |
| 46 | |
| 47 | Carnegie Mellon encourages users of this software to return any |
| 48 | improvements or extensions that they make, and to grant Carnegie |
| 49 | Mellon the rights to redistribute these changes without encumbrance. |
| 50 | */ |
| 51 | |
| 52 | /* |
| 53 | * |
| 54 | * Based on cfs.h from Mach, but revamped for increased simplicity. |
| 55 | * Linux modifications by |
| 56 | * Peter Braam, Aug 1996 |
| 57 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #ifndef _CODA_HEADER_ |
| 59 | #define _CODA_HEADER_ |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #if defined(__linux__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | typedef unsigned long long u_quad_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #endif |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 64 | #include <uapi/linux/coda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #endif |