Module Name: src Committed By: christos Date: Fri Sep 23 14:47:41 UTC 2011
Modified Files: src/sys/sys: param.h Log Message: remove things that have not been used for almost 20 years (cblock stuff) To generate a diff of this commit: cvs rdiff -u -r1.392 -r1.393 src/sys/sys/param.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/param.h diff -u src/sys/sys/param.h:1.392 src/sys/sys/param.h:1.393 --- src/sys/sys/param.h:1.392 Mon Jul 11 04:27:39 2011 +++ src/sys/sys/param.h Fri Sep 23 10:47:41 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.392 2011/07/11 08:27:39 hannken Exp $ */ +/* $NetBSD: param.h,v 1.393 2011/09/23 14:47:41 christos Exp $ */ /*- * Copyright (c) 1982, 1986, 1989, 1993 @@ -295,12 +295,6 @@ #define CMASK 022 /* default file mask: S_IWGRP|S_IWOTH */ #define NODEV (dev_t)(-1) /* non-existent device */ -#define CBLOCK 64 /* Clist block size, must be a power of 2. */ -#define CBQSIZE (CBLOCK/NBBY) /* Quote bytes/cblock - can do better. */ - /* Data chars/clist. */ -#define CBSIZE (CBLOCK - (int)sizeof(struct cblock *) - CBQSIZE) -#define CROUND (CBLOCK - 1) /* Clist rounding. */ - /* * File system parameters and macros. *