]> Zhao Yanbai Git Server - minix.git/commitdiff
VFS/FS: putnode count need not be 64-bit 43/2843/1
authorDavid van Moolenbroek <david@minix3.org>
Mon, 29 Sep 2014 15:14:02 +0000 (15:14 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Mon, 29 Sep 2014 15:14:02 +0000 (15:14 +0000)
Change-Id: I49e67438d3f316e0321ac711494e988bb6510679

minix/include/minix/ipc.h

index fa8221d5df3c055fc7683b6ad180eb9fed4a8d33..074c46ba3a832b144d03d56e41ea7fd752e215ef 100644 (file)
@@ -1825,10 +1825,10 @@ typedef struct {
 _ASSERT_MSG_SIZE(mess_vfs_fs_newnode);
 
 typedef struct {
-       uint64_t count;
        ino_t inode;
+       unsigned int count;
 
-       uint8_t data[40];
+       uint8_t data[44];
 } mess_vfs_fs_putnode;
 _ASSERT_MSG_SIZE(mess_vfs_fs_putnode);