SHA256
1
0
forked from pool/net-snmp

Accepting request 713345 from home:abergmann:branches:network:utilities

Add Lustre filesystem support (bsc#1140341).

OBS-URL: https://build.opensuse.org/request/show/713345
OBS-URL: https://build.opensuse.org/package/show/network:utilities/net-snmp?expand=0&rev=20
This commit is contained in:
Marcus Meissner 2019-07-07 13:42:35 +00:00 committed by Git OBS Bridge
parent b8e0cee5d9
commit 5578ffb891
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,24 @@
diff -Nurp net-snmp-5.8-orig/agent/mibgroup/hardware/fsys/fsys_mntent.c net-snmp-5.8/agent/mibgroup/hardware/fsys/fsys_mntent.c
--- net-snmp-5.8-orig/agent/mibgroup/hardware/fsys/fsys_mntent.c 2018-07-16 16:33:40.000000000 +0200
+++ net-snmp-5.8/agent/mibgroup/hardware/fsys/fsys_mntent.c 2019-07-04 10:03:38.611004672 +0200
@@ -144,6 +144,7 @@ _fsys_type( char *typename )
!strcmp(typename, MNTTYPE_CVFS) ||
!strcmp(typename, MNTTYPE_SIMFS) ||
!strcmp(typename, MNTTYPE_BTRFS) ||
+ !strcmp(typename, MNTTYPE_LUSTRE) ||
!strcmp(typename, MNTTYPE_ZFS) ||
!strcmp(typename, MNTTYPE_NVMFS) ||
!strcmp(typename, MNTTYPE_ACFS) ||
diff -Nurp net-snmp-5.8-orig/agent/mibgroup/hardware/fsys/mnttypes.h net-snmp-5.8/agent/mibgroup/hardware/fsys/mnttypes.h
--- net-snmp-5.8-orig/agent/mibgroup/hardware/fsys/mnttypes.h 2018-07-16 16:33:40.000000000 +0200
+++ net-snmp-5.8/agent/mibgroup/hardware/fsys/mnttypes.h 2019-07-04 10:04:25.607004626 +0200
@@ -148,6 +148,9 @@
#ifndef MNTTYPE_BTRFS
#define MNTTYPE_BTRFS "btrfs"
#endif
+#ifndef MNTTYPE_LUSTRE
+#define MNTTYPE_LUSTRE "lustre"
+#endif
#ifndef MNTTYPE_ZFS
#define MNTTYPE_ZFS "zfs"
#endif

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jul 4 08:06:47 UTC 2019 - abergmann@suse.com
- Add Lustre filesystem support (bsc#1140341).
Add net-snmp-5.8-add-lustre-fs-support.patch
-------------------------------------------------------------------
Wed Mar 6 10:21:17 UTC 2019 - abergmann@suse.com