-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodule.c
32 lines (29 loc) · 1.19 KB
/
module.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// SPDX-License-Identifier: GPL-2.0
/*
* PMFS2 -- PMEM file-system in user-space via ZUFS.
*
* This program is free software; you may redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*
* PMFS2 code is a derived work from Intel's in-kernel PMEM file-system, which
* itself is a derived work:
*
* Copyright 2012-2013 Intel Corporation
* Copyright 2009-2011 Marco Stornelli <[email protected]>
* Copyright 2003 Sony Corporation
* Copyright 2003 Matsushita Electric Industrial Co., Ltd.
* 2003-2004 (c) MontaVista Software, Inc. , Steve Longerbeam
*/
#include "pmfs2.h"
const ushort PMFS2_VERSION[2] = { PMFS2_MAJOR_VERSION, PMFS2_MINOR_VERSION };
const char PMFS2_LICENSE[] = "GPL-2.0";