|
From: <sv...@va...> - 2015-08-14 08:05:44
|
Author: sewardj
Date: Fri Aug 14 09:05:35 2015
New Revision: 15541
Log:
Bug 349034 - Add Lustre ioctls LL_IOC_GROUP_LOCK and LL_IOC_GROUP_UNLOCK
Patch from Frank Zago (fz...@cr...)
Modified:
trunk/coregrind/m_syswrap/syswrap-linux.c
trunk/include/vki/vki-linux.h
Modified: trunk/coregrind/m_syswrap/syswrap-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-linux.c Fri Aug 14 09:05:35 2015
@@ -5550,6 +5550,10 @@
/* InfiniBand */
case VKI_IB_USER_MAD_ENABLE_PKEY:
+ /* Lustre */
+ case VKI_LL_IOC_GROUP_LOCK:
+ case VKI_LL_IOC_GROUP_UNLOCK:
+
/* V4L2 */
case VKI_V4L2_LOG_STATUS:
Modified: trunk/include/vki/vki-linux.h
==============================================================================
--- trunk/include/vki/vki-linux.h (original)
+++ trunk/include/vki/vki-linux.h Fri Aug 14 09:05:35 2015
@@ -3692,6 +3692,10 @@
//----------------------------------------------------------------------
// From Lustre's lustre/include/lustre/lustre_user.h
//----------------------------------------------------------------------
+#define VKI_LL_IOC_GROUP_LOCK \
+ _VKI_IOW('f', 158, long)
+#define VKI_LL_IOC_GROUP_UNLOCK \
+ _VKI_IOW('f', 159, long)
#define VKI_LL_IOC_GETPARENT \
_VKI_IOWR('f', 249, struct vki_getparent)
|