Re: Where is the syncer kernel process implemented?

2000-07-25 Thread Sheldon Hearn
On Mon, 24 Jul 2000 22:34:39 MST, Kirk McKusick wrote: time_t filedelay = 30; /* time to delay syncing files */ time_t dirdelay = 29; /* time to delay syncing directories */ time_t metadelay = 28; /* time to delay syncing metadata */ Each of these variables is

Re: Where is the syncer kernel process implemented?

2000-07-25 Thread Alfred Perlstein
* Sheldon Hearn [EMAIL PROTECTED] [000725 00:59] wrote: On Mon, 24 Jul 2000 22:34:39 MST, Kirk McKusick wrote: time_t filedelay = 30; /* time to delay syncing files */ time_t dirdelay = 29; /* time to delay syncing directories */ time_t metadelay = 28; /*

Re: Where is the syncer kernel process implemented?

2000-07-24 Thread Kirk McKusick
From: Sheldon Hearn [EMAIL PROTECTED] To: Alfred Perlstein [EMAIL PROTECTED] Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: Where is the syncer kernel process implemented? In-reply-to: Your message of "Fri, 14 Jul 2000 05:38:5

Where is the syncer kernel process implemented?

2000-07-14 Thread Sheldon Hearn
Hi folks, I need to replace the update(4) manual page with a syncer(4) manual page. Can someone please point me at the code that implements this process? Thanks, Sheldon. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Where is the syncer kernel process implemented?

2000-07-14 Thread Sheldon Hearn
On Fri, 14 Jul 2000 05:38:58 MST, Alfred Perlstein wrote: /* * System filesystem synchronizer daemon. */ void sched_sync(void) It seems that the default sync delay, syncer_maxdelay, is no longer controllable via sysctl(8). Are there complex issues restricting the changing of this