]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging/lustre: shrink lu_object_header by 8 bytes on x86_64
authorAndreas Dilger <andreas.dilger@intel.com>
Sun, 27 Apr 2014 17:06:51 +0000 (13:06 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 27 Apr 2014 17:24:54 +0000 (10:24 -0700)
Locate the loh_flags and loh_ref fields together in lu_object_header
to avoid holes and shrink the structure by 8 bytes.

Signed-off-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-on: http://review.whamcloud.com/9185
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-3059
Reviewed-by: Alex Zhuravlev <alexey.zhuravlev@intel.com>
Reviewed-by: Liang Zhen <liang.zhen@intel.com>
Signed-off-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/include/lu_object.h

index 6773bca1e0d834084d22f14e73db81672329a3f3..98149f5da1538c7dce90bb12bf76d31e857e505f 100644 (file)
@@ -515,6 +515,10 @@ enum lu_object_header_attr {
  * whether object is backed by persistent storage entity.
  */
 struct lu_object_header {
+       /**
+        * Fid, uniquely identifying this object.
+        */
+       struct lu_fid           loh_fid;
        /**
         * Object flags from enum lu_object_header_flags. Set and checked
         * atomically.
@@ -524,10 +528,6 @@ struct lu_object_header {
         * Object reference count. Protected by lu_site::ls_guard.
         */
        atomic_t           loh_ref;
-       /**
-        * Fid, uniquely identifying this object.
-        */
-       struct lu_fid     loh_fid;
        /**
         * Common object attributes, cached for efficiency. From enum
         * lu_object_header_attr.