aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/include/lustre_ver.h
blob: 64559a16f4deaa8635fff733161203b194db42ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _LUSTRE_VER_H_
#define _LUSTRE_VER_H_

#define LUSTRE_MAJOR 2
#define LUSTRE_MINOR 4
#define LUSTRE_PATCH 60
#define LUSTRE_FIX 0
#define LUSTRE_VERSION_STRING "2.4.60"

#define LUSTRE_VERSION_CODE OBD_OCD_VERSION(LUSTRE_MAJOR, \
					    LUSTRE_MINOR, LUSTRE_PATCH, \
					    LUSTRE_FIX)

/*
 * If lustre version of client and servers it connects to differs by more
 * than this amount, client would issue a warning.
 */
#define LUSTRE_VERSION_OFFSET_WARN OBD_OCD_VERSION(0, 4, 0, 0)

#endif