Subject: re: kern/35253
To: None <kern-bug-people@netbsd.org, gnats-admin@netbsd.org,>
From: YAMAMOTO Takashi <yamt@mwd.biglobe.ne.jp>
List: netbsd-bugs
Date: 12/26/2006 09:50:02
The following reply was made to PR kern/35253; it has been noted by GNATS.

From: yamt@mwd.biglobe.ne.jp (YAMAMOTO Takashi)
To: elad@NetBSD.org
Cc: gnats-bugs@NetBSD.org
Subject: re: kern/35253
Date: Tue, 26 Dec 2006 18:48:11 +0900 (JST)

 > we can do something like this:
 > 
 > 	fileassoc_table_size(struct mount *mp);
 > 		return number of slots table for 'mp' was optimized for.
 > 
 > 	fileassoc_table_optimize(struct mount *mp, size_t nentries);
 > 		optimize the hash-table for 'mp' for 'nentries' slots.
 > 
 > notes:
 >   - there should be locking implications to fileassoc_table_optimize(),
 >   - the wording avoids exposing internal implementation details of
 >     fileassoc(9).
 > 
 > -e.
 
 it's better to just remove fileassoc_table_add from API
 and just do them internally, IMO.
 
 YAMAMOTO Takashi