public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Gregoire Favre <greg@ulima.unil.ch>
To: linux-kernel@vger.kernel.org
Subject: Re: 2.5.48 and SCSI ?
Date: Mon, 18 Nov 2002 22:13:30 +0100	[thread overview]
Message-ID: <20021118211330.GA8870@ulima.unil.ch> (raw)
In-Reply-To: <20021118203605.GC8357@ulima.unil.ch>

Hello,

same result with vanilla with just this devfs patch:

802,804c802,804
<     struct timespec atime;
<     struct timespec mtime;
<     struct timespec ctime;
---
>     time_t atime;
>     time_t mtime;
>     time_t ctime;
2512,2514c2512,2514
<     de->inode.atime = inode->i_atime;
<     de->inode.mtime = inode->i_mtime;
<     de->inode.ctime = inode->i_ctime;
---
>     de->inode.atime = inode->i_atime.tv_sec;
>     de->inode.mtime = inode->i_mtime.tv_sec;
>     de->inode.ctime = inode->i_ctime.tv_sec;
2613,2615c2613,2618
<     inode->i_atime = de->inode.atime;
<     inode->i_mtime = de->inode.mtime;
<     inode->i_ctime = de->inode.ctime;
---
>     inode->i_atime.tv_sec = de->inode.atime;
>     inode->i_mtime.tv_sec = de->inode.mtime;
>     inode->i_ctime.tv_sec = de->inode.ctime;
>     inode->i_atime.tv_nsec = 0;
>     inode->i_mtime.tv_nsec = 0;
>     inode->i_ctime.tv_nsec = 0;

Isn't that the right fix for fs/devfs/base.c ?

Thank you very much,

	Grégoire
________________________________________________________________
http://ulima.unil.ch/greg ICQ:16624071 mailto:greg@ulima.unil.ch

  reply	other threads:[~2002-11-18 21:06 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-18 20:36 2.5.48 and SCSI ? Gregoire Favre
2002-11-18 21:13 ` Gregoire Favre [this message]
2002-11-18 21:33 ` Kai Makisara
2002-11-18 21:49   ` 2.5.48 and SCSI ? (devfs problem!!!) Gregoire Favre
2002-11-19  5:17     ` Patrick Mansfield
2002-11-19  7:51       ` Gregoire Favre

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20021118211330.GA8870@ulima.unil.ch \
    --to=greg@ulima.unil.ch \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox