From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27758 invoked from network); 28 Nov 2007 17:23:52 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.3 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 28 Nov 2007 17:23:52 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 14570 invoked from network); 28 Nov 2007 17:23:45 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 28 Nov 2007 17:23:45 -0000 Received: (qmail 18465 invoked by alias); 28 Nov 2007 17:23:37 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 24126 Received: (qmail 18447 invoked from network); 28 Nov 2007 17:23:36 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 28 Nov 2007 17:23:36 -0000 Received: (qmail 13783 invoked from network); 28 Nov 2007 17:23:36 -0000 Received: from mail.gmx.net (213.165.64.20) by a.mx.sunsite.dk with SMTP; 28 Nov 2007 17:23:30 -0000 Received: (qmail invoked by alias); 28 Nov 2007 17:23:29 -0000 Received: from p549B5063.dip.t-dialin.net (EHLO localhost) [84.155.80.99] by mail.gmx.net (mp042) with SMTP; 28 Nov 2007 18:23:29 +0100 X-Authenticated: #27333227 X-Provags-ID: V01U2FsdGVkX1+yoSAj5KOysVZ731x+Np7njPiLtKepQCn7tYx6Xh xpipXaffqot0KL Date: Wed, 28 Nov 2007 18:23:25 +0100 From: Mustafa Oezkan To: zsh-workers@sunsite.dk Subject: PATCH: _mount add option for relatime Message-ID: <20071128172325.GA16901@xenon.codefish.lan> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline User-Agent: mutt-ng/devel-r804 (Linux) X-Y-GMX-Trusted: 0 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, patch to add relatime and norelatime to mount -o. -- There's a difference between, doing wrong and being wrong. --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mount_relatime.patch" --- Completion/Unix/Command/_mount.orig 2007-11-28 16:31:59.462347608 +0100 +++ Completion/Unix/Command/_mount 2007-11-28 17:00:31.625607831 +0100 @@ -305,11 +305,13 @@ _fs_any=( '(sync)async[do all I/O asynchronously]' '(noatime)atime[update access time]' + '(norelatime)relatime[update atime relative to mtime/ctime]' '(rw suid dev exec async)defaults[use default options]' '(nodev)dev[interpret devices]' '(noexec)exec[permit execution of binaries]' '(nomand)mand[allow mandatory locks]' "(atime)noatime[don't update access time]" + "(relatime)norelatime[update access time without regard to mtime/ctime]" "(dev)nodev[don't interpret devices]" "(exec)noexec[don't allow execution of binaries]" "(mand)nomand[don'tallow mandatory locks]" --LZvS9be/3tNcYl/X--