From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Mon, 8 Jul 2019 17:51:10 +0300 From: Vladimir Davydov Subject: Re: [PATCH v2] fio: introduce utime function Message-ID: <20190708145110.rauvydnpn3c6hhqq@esperanza> References: <20190705190703.22908-1-olegrok@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190705190703.22908-1-olegrok@tarantool.org> To: Oleg Babin Cc: tarantool-patches@freelists.org, Oleg Babin List-ID: On Fri, Jul 05, 2019 at 10:07:03PM +0300, Oleg Babin wrote: > +fio.utime('newfile', 0, 0) > +--- > +- true > +... > +fh:stat().atime == 0 > +--- > +- true > +... > +fh:stat().mtime == 0 > +--- > +- true > +... > +fio.utime('newfile', 1, 2) > +--- > +- true > +... > +fh:stat().atime == 1 > +--- > +- false > +... > +fh:stat().mtime == 2 > +--- > +- false > +... ??? Looks like you mixed atime with mtime. Please fix.