aboutsummaryrefslogtreecommitdiff
path: root/sys/gnu/fs/ext2fs/inode.h
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1997-05-22 07:30:55 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1997-05-22 07:30:55 +0000
commitf10c6b8f35667e2bbfb6e996878bbe1648a274a6 (patch)
treeffb6d0d0cd152f6277e7952aaac3d314be3fc1b4 /sys/gnu/fs/ext2fs/inode.h
parent0084fb021ba88d7f22b44035aebf97e625365f08 (diff)
downloadsrc-f10c6b8f35667e2bbfb6e996878bbe1648a274a6.tar.gz
src-f10c6b8f35667e2bbfb6e996878bbe1648a274a6.zip
Shrink struct inode by 20 bytes, so that malloc wastes less space.
Pointed out by: bde
Notes
Notes: svn path=/head/; revision=26001
Diffstat (limited to 'sys/gnu/fs/ext2fs/inode.h')
-rw-r--r--sys/gnu/fs/ext2fs/inode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/fs/ext2fs/inode.h b/sys/gnu/fs/ext2fs/inode.h
index 238f838a5271..73ed6b635442 100644
--- a/sys/gnu/fs/ext2fs/inode.h
+++ b/sys/gnu/fs/ext2fs/inode.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)inode.h 8.9 (Berkeley) 5/14/95
- * $Id: inode.h,v 1.13 1997/03/03 16:25:46 bde Exp $
+ * $Id: inode.h,v 1.14 1997/04/01 08:02:00 bde Exp $
*/
#ifndef _UFS_UFS_INODE_H_
@@ -87,7 +87,7 @@ struct inode {
doff_t i_offset; /* Offset of free space in directory. */
ino_t i_ino; /* Inode number of found directory. */
u_int32_t i_reclen; /* Size of found directory entry. */
- int i_spare[10]; /* XXX spare storage (for ext2fs) */
+ int i_spare[5]; /* XXX spare storage (for ext2fs) */
/*
* The on-disk dinode itself.
*/