From: Kirk McKusick Date: Fri, 20 Nov 1981 14:41:03 +0000 (-0800) Subject: conversion of ino_t from u_short to u_long (making dir entries 32 bytes each) X-Git-Tag: BSD-4_1_snap-Snapshot-Development~489 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/5ae9a796cc028151943a86f4589c46eaf3414bce conversion of ino_t from u_short to u_long (making dir entries 32 bytes each) SCCS-vsn: sys/ufs/ffs/fs.h 1.7 --- diff --git a/usr/src/sys/ufs/ffs/fs.h b/usr/src/sys/ufs/ffs/fs.h index 9652234dd4..153539e163 100644 --- a/usr/src/sys/ufs/ffs/fs.h +++ b/usr/src/sys/ufs/ffs/fs.h @@ -1,6 +1,6 @@ /* Copyright (c) 1981 Regents of the University of California */ -/* fs.h 1.6 %G% */ +/* fs.h 1.7 %G% */ /* * Each disk drive contains some number of file systems. @@ -71,13 +71,7 @@ struct csum { /* * Each file system has a number of inodes statically allocated. * We allocate one inode slot per NBPI data bytes, expecting this - * to be far more than we will ever need. Actually, the directory - * structure has inode numbers kept in 16 bits, so no more than - * 65K inodes are possible, and this usually cuts off well above - * the number suggested by NBPI. - * - * THE DIRECTORY STRUCTURE SHOULD BE CHANGED SOON TO ALLOW - * LARGER INODE NUMBERS (SEE DIR.H). + * to be far more than we will ever need. */ #define NBPI 2048