From dc544a34625603602db7788156a9b4b45bd33cd8 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 24 Jul 2012 20:09:28 +0200 Subject: [PATCH] cwfs: remove noatime runtime option --- sys/src/cmd/cwfs/con.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/sys/src/cmd/cwfs/con.c b/sys/src/cmd/cwfs/con.c index fb5be9666..201e4ac7e 100644 --- a/sys/src/cmd/cwfs/con.c +++ b/sys/src/cmd/cwfs/con.c @@ -693,14 +693,6 @@ cmd_noauth(int, char *[]) print("auth %s\n", noauth ? "disabled" : "enabled"); } -void -cmd_noatime(int, char *[]) -{ - noatime = !noatime; - noatimeset++; - print("atime %s\n", noatime ? "disabled" : "enabled"); -} - void cmd_noattach(int, char *[]) { @@ -775,7 +767,6 @@ installcmds(void) cmd_install("hangup", "chan -- clunk files", cmd_hangup); cmd_install("printconf", "-- print configuration", cmd_printconf); cmd_install("noauth", "toggle noauth flag", cmd_noauth); - cmd_install("noatime", "toggle noatime flag", cmd_noatime); cmd_install("noattach", "toggle noattach flag", cmd_noattach); cmd_install("files", "report on files structure", cmd_files);