linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pread/pwrite bug on linux?
       [not found] <b9ec419f0903021120g62814b6embe8eeaf354f8b535@mail.gmail.com>
@ 2009-03-02 21:53 ` Qiuyang Wu
       [not found]   ` <293BC70BB130E648A6631DB2F05B6E10019D6B224C-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Qiuyang Wu @ 2009-03-02 21:53 UTC (permalink / raw)
  To: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org


Hi All,

Are there any known bugs with pread/pwrite on RHEL Linux when the disk partition is close to full?

Reduced a complex application fatal down to a simple program just opens a regular file and performs 1M sequential pwrite() of size 8KB blocks; at every 100th write, does a pread() to load the very first 8KB block and validate its content still matching what was originally written.

What I observed are the following when running on different machines and writing/reading to a disk partition nearly full with slightly more than 1GB of free space according to 'df' (the program is the only process accessing the disk) -

* Linux 2.6.9-55.ELsmp #1 SMP Fri Apr 20 16:36:54 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux  (RHEL4)

BEHAVIOR: pwrite() works for many iterations, then pread() suddenly returns data of the requested size but filled with 0's, and strerror shows errno="No such file or directory", condition
      if(size_to_read != pread(fd, buf, size_to_read, ...)) ...
is not triggered and application has to check errno immediately after every call to pread.

CONCLUSION: serious bug, why does pread() return the expected size filled with 0? and why doesn't pwrite() fail earlier so application has a chance to bail out and stop pushing more data to the file?

* Linux 2.6.18-8.el5 #1 SMP Fri Jan 26 14:15:14 EST 2007 x86_64 x86_64 x86_64 GNU/Linux (RHEL5)

BEHAVIOR: pwrite() works for much fewer iterations, then pread() errors out again with errno="No such file or directory", and condition (size_to_read!=pread(...)) is asserted at the meantime, which is slightly better but application still very hard to recover.

CONCLUSION: Bug, still, pwrite() should error out earlier if not enough space to commit data, instead of fail on pread() as it's often catastrophic for application to handle.

Interestingly, with Suse Linux Enterprise which has an older kernel version, the behavior seems much more defensive and sane

* Linux 2.6.5-7.244-smp #1 SMP Mon Dec 12 18:32:25 UTC 2005 x86_64 x86_64 x86_64 GNU/Linux

BEHAVIOR: pwrite() works for a few iterations and errors out with errno="Disk quota exceeded" before pread() fails, application easily traps and handles without data lose.


Any pointers either to any known bugs or anything I might be missing are highly appreciated!

Thanks
Qiuyang

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pread/pwrite bug on linux?
       [not found]   ` <293BC70BB130E648A6631DB2F05B6E10019D6B224C-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
@ 2009-03-03 18:10     ` Jeff Moyer
  2009-03-03 18:47       ` Qiuyang Wu
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Moyer @ 2009-03-03 18:10 UTC (permalink / raw)
  To: Qiuyang Wu; +Cc: linux-nfs@vger.kernel.org, linux-fsdevel@vger.kernel.org

Qiuyang Wu <Qiuyang.Wu-HKixBCOQz3hWk0Htik3J/w@public.gmane.org> writes:

> Hi All,
>
> Are there any known bugs with pread/pwrite on RHEL Linux when the disk
> partition is close to full?
>
> Reduced a complex application fatal down to a simple program just
> opens a regular file and performs 1M sequential pwrite() of size 8KB
> blocks; at every 100th write, does a pread() to load the very first
> 8KB block and validate its content still matching what was originally
> written.

Could you attach your test program, please?

> BEHAVIOR: pwrite() works for many iterations, then pread() suddenly
> returns data of the requested size but filled with 0's, and strerror
> shows errno="No such file or directory", condition
>       if(size_to_read != pread(fd, buf, size_to_read, ...)) ...
> is not triggered and application has to check errno immediately after
> every call to pread.

The value of errno is undefined if the pread call did not return -1.

Cheers,
Jeff
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: pread/pwrite bug on linux?
  2009-03-03 18:10     ` Jeff Moyer
@ 2009-03-03 18:47       ` Qiuyang Wu
       [not found]         ` <293BC70BB130E648A6631DB2F05B6E10019D6B277E-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Qiuyang Wu @ 2009-03-03 18:47 UTC (permalink / raw)
  To: Jeff Moyer, Qiuyang Wu
  Cc: linux-nfs@vger.kernel.org, linux-fsdevel@vger.kernel.org

[-- Attachment #1: Type: text/plain, Size: 1351 bytes --]

Hi Jeff,

Attached the sample program. Should be able to compile as-is.

Let me know your findings or need additional info.

Thanks,
Qiuyang

-----Original Message-----
From: Jeff Moyer [mailto:jmoyer@redhat.com]
Sent: Tuesday, March 03, 2009 10:10 AM
To: Qiuyang Wu
Cc: linux-nfs@vger.kernel.org; linux-fsdevel@vger.kernel.org
Subject: Re: pread/pwrite bug on linux?

Qiuyang Wu <Qiuyang.Wu@synopsys.com> writes:

> Hi All,
>
> Are there any known bugs with pread/pwrite on RHEL Linux when the disk
> partition is close to full?
>
> Reduced a complex application fatal down to a simple program just
> opens a regular file and performs 1M sequential pwrite() of size 8KB
> blocks; at every 100th write, does a pread() to load the very first
> 8KB block and validate its content still matching what was originally
> written.

Could you attach your test program, please?

> BEHAVIOR: pwrite() works for many iterations, then pread() suddenly
> returns data of the requested size but filled with 0's, and strerror
> shows errno="No such file or directory", condition
>       if(size_to_read != pread(fd, buf, size_to_read, ...)) ...
> is not triggered and application has to check errno immediately after
> every call to pread.

The value of errno is undefined if the pread call did not return -1.

Cheers,
Jeff

[-- Attachment #2: io_test.c --]
[-- Type: text/plain, Size: 5798 bytes --]


/******************************************************************************

  ABSTRACT:   Simple program to test behavior of pwrite/pread calls under
              the condition of insufficient disk space. Expect to trigger
              error when pushing data to disk with pwrite, instead of failing
              on pread, which implies data lose.

              The program does the following -
                - pwrite up to 1M size 8KB chunks (total ~8GB if finishes)
                - Very first 8KB chunk is specially filled with int value 13.
                - at every 100th write, does pread to load the first 8KB
                  chunk and validate (part of) its content.
                - before and after each pread, also use fstat to sannity
                  check program is in sync with the file.     

              To compile with GCC (e.g. gcc-4.2.2) -
                >gcc io_test.c

              To run:
                The program requires one arg which is the path to a directory
                for creating a regular file for write/read testing. Example                   
              
                >a.out /path/to/writable/dir

              To demonstrate the problem
                 Choose a disk partition that is almost full, for example,
                 the following with ~1GB available space -

                 > cd /remote/testdsk/qwu
                 > df -k .
                Filesystem           1K-blocks      Used Available Use% Mounted on
                emcns202:/testdsk    318033408 316740544   1292864 100% /remote/testdsk
                 > a.out /remote/testdsk/qwu


  HISTORY:	
  Feb 24 2009 - Qiuyang Wu : Created.

******************************************************************************/

#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <sys/stat.h>

#define FILE_NAME   "rw_test_file"
#define TOTAL_WRITE 1000000 // total number of pwrites
#define CHUNK_SIZE  8192    // buf size per write
#define CMP_SIZE    10      // compare the first 10 bytes
#define READ_INTERV 100     // read at every 100 write

char* check_args(char *dir);
int   pwrite_pread_test(char *fname);
void  stat_file(char* op, int fd, size_t size, off_t offset);
int   check_pread(int fd, char* fname, char* buf, char* refbuf);

int main(int argc, char* *argv)
{
  char *full_fname=NULL;
  
  if(argc != 2) {
    printf("Usage: %s dir_path \n", argv[0]);
    exit(1);
  }

  if((full_fname = check_args(argv[1]))) {
    pwrite_pread_test(full_fname);
    free(full_fname);
  }

  exit(0);
}

int pwrite_pread_test(char *fname) {
  int   ok=1;
  int   fd=-1;
  int   w_count=0;
  off_t cur_offset=0;
  char  *buf=NULL;
  char  *refbuf=NULL;  
  
  fd = open(fname, (O_CREAT|O_RDWR), (S_IRUSR|S_IWUSR) ) ;

  if(fd==-1) {
    printf("Error opening '%s' for writing.\n", fname);
    exit(-1);
  }

  buf = malloc(CHUNK_SIZE);
  refbuf = malloc(CHUNK_SIZE);
  memset(buf, 13, CHUNK_SIZE);
  memset(refbuf, 13, CHUNK_SIZE);

  while(w_count<TOTAL_WRITE) {
    ++w_count;
    if(CHUNK_SIZE != pwrite(fd, buf, CHUNK_SIZE, cur_offset)) {
      /* Just  print errno and bail out, a filled disk is expected at some point */
      printf("Error (%s) writing to file '%s'.\n", strerror(errno), fname);
      ok = 0;
      break;  
    }
    
    if(0==(w_count%READ_INTERV)) {
      printf("writes=%9d ::", w_count);
      stat_file("after-PWRITE", fd, CHUNK_SIZE, cur_offset);
      ok = check_pread(fd, fname, buf, refbuf);
      if(!ok) break;
    }
    
    cur_offset += CHUNK_SIZE; // increment cur_offset
    memset(buf, (int)(w_count%10), CHUNK_SIZE); // fill buf with some data for next pwrite
  }
  
  free(buf);
  free(refbuf);
  close(fd);
  
  return ok;
}

int check_pread(int fd, char* fname, char* buf, char* refbuf)
{
  int ok=1;
  
  printf("read/check first chunk ...\n");        
  
  memset(buf, -1, CHUNK_SIZE); //prest the buf to sentinel values
  
  if(CHUNK_SIZE != pread(fd, buf, CHUNK_SIZE, 0)) {
    /* Problem bailing out on pread, prints errno */
    printf("Error (%s) reading from file '%s'.\n", strerror(errno), fname);
    return 0;
  } else {
    stat_file("before-PREAD", fd, CHUNK_SIZE, 0);
    if(memcmp(buf, refbuf, CMP_SIZE)) {
      /*
      ** key problem: pread appears successful but buf contain corrupted data
      */
      int i=0;
      printf("... data BAD! (errno=%s)\n", strerror(errno));
      for(i=0; i<CMP_SIZE; ++i) {
        printf("buf[%d]=%d ref[%d]=%d\n", i, buf[i], i, refbuf[i]);              
      }
      stat_file("after-PREAD", fd, CHUNK_SIZE, 0);
      ok = 0;
    } else {
      printf("... data OK!.\n");                 
    }
  }
  fflush(stdout);
  return ok;
}

void stat_file(char* op, int fd, size_t size, off_t offset)
{  
  struct stat stats;
  
  if ( -1 == fstat(fd, &stats) ) {
    printf("%s::fstat failed!\n", op);
  } else {
    printf("\t%s:: fd=%d, fstat.sz=%ld, off/sz=%ld/%ld => %ld!\n",
           op, (int)fd, (long)stats.st_size,
           (long)offset, (long)size, (long)offset+(long)size);
  }
  fflush(stdout);
}

char* check_args(char *dir) {
  int ok=1;
  int len=0;
  struct stat statbuf;
  char *full_fname=NULL;
  
  if(stat(dir, &statbuf)==-1) {
    perror("stat call failed!\n");
    ok = 0;
  } else {
    ok = (S_ISDIR(statbuf.st_mode) && 0==access(dir, W_OK));
  }

  if(!ok) {
    printf("Error: directory '%s' not accessible\n", dir);
    return NULL;
  }
  
  len = strlen(dir) + strlen(FILE_NAME) + 2;
  full_fname = malloc(len);
  memset(full_fname, 0, len);
  sprintf(full_fname, "%s/%s", dir, FILE_NAME);

  if(access(full_fname, F_OK)==0) {
    printf("Error: file '%s' already exists.\n", full_fname);
    free(full_fname);
    return NULL;
  }

  return full_fname;  
}


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: pread/pwrite bug on linux?
       [not found]         ` <293BC70BB130E648A6631DB2F05B6E10019D6B277E-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
@ 2009-03-03 19:37           ` Trond Myklebust
  2009-03-03 20:07             ` Qiuyang Wu
  2009-03-04 18:48           ` Jeff Moyer
  1 sibling, 1 reply; 8+ messages in thread
From: Trond Myklebust @ 2009-03-03 19:37 UTC (permalink / raw)
  To: Qiuyang Wu
  Cc: Jeff Moyer, linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

On Tue, 2009-03-03 at 10:47 -0800, Qiuyang Wu wrote:
> Hi Jeff,
> 
> Attached the sample program. Should be able to compile as-is.
> 
> Let me know your findings or need additional info.
> 
> Thanks,
> Qiuyang

Are you compiling that on a 64-bit system? Otherwise you should note
that off_t is a signed 32-bit integer. You'd need to compile your test
program with -D_FILE_OFFSET_BITS=64 in order to make those pwrite()
calls work correctly past the 2Gb mark.
You also have potential 32/64-bit issues with the stat_file() routine.

Trond

> -----Original Message-----
> From: Jeff Moyer [mailto:jmoyer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org]
> Sent: Tuesday, March 03, 2009 10:10 AM
> To: Qiuyang Wu
> Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Subject: Re: pread/pwrite bug on linux?
> 
> Qiuyang Wu <Qiuyang.Wu-HKixBCOQz3hWk0Htik3J/w@public.gmane.org> writes:
> 
> > Hi All,
> >
> > Are there any known bugs with pread/pwrite on RHEL Linux when the disk
> > partition is close to full?
> >
> > Reduced a complex application fatal down to a simple program just
> > opens a regular file and performs 1M sequential pwrite() of size 8KB
> > blocks; at every 100th write, does a pread() to load the very first
> > 8KB block and validate its content still matching what was originally
> > written.
> 
> Could you attach your test program, please?
> 
> > BEHAVIOR: pwrite() works for many iterations, then pread() suddenly
> > returns data of the requested size but filled with 0's, and strerror
> > shows errno="No such file or directory", condition
> >       if(size_to_read != pread(fd, buf, size_to_read, ...)) ...
> > is not triggered and application has to check errno immediately after
> > every call to pread.
> 
> The value of errno is undefined if the pread call did not return -1.
> 
> Cheers,
> Jeff

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: pread/pwrite bug on linux?
  2009-03-03 19:37           ` Trond Myklebust
@ 2009-03-03 20:07             ` Qiuyang Wu
  0 siblings, 0 replies; 8+ messages in thread
From: Qiuyang Wu @ 2009-03-03 20:07 UTC (permalink / raw)
  To: Trond Myklebust, Qiuyang Wu
  Cc: Jeff Moyer, linux-nfs@vger.kernel.org,
	linux-fsdevel@vger.kernel.org

Hi Trond,

Yes, I did compile it both on 32bit and 64bit, as well as run on both 32bit and 64bit, also tried what you suggested.

Unless there is something else I am missing, the only difference in behavior I saw were the number of iterations pwrite() goes thru before pread() fails... and in all cases, the file size is well under 2GB before pread() failed.

Thanks,
Qiuyang


-----Original Message-----
From: Trond Myklebust [mailto:trond.myklebust@fys.uio.no]
Sent: Tuesday, March 03, 2009 11:37 AM
To: Qiuyang Wu
Cc: Jeff Moyer; linux-nfs@vger.kernel.org; linux-fsdevel@vger.kernel.org
Subject: RE: pread/pwrite bug on linux?

On Tue, 2009-03-03 at 10:47 -0800, Qiuyang Wu wrote:
> Hi Jeff,
>
> Attached the sample program. Should be able to compile as-is.
>
> Let me know your findings or need additional info.
>
> Thanks,
> Qiuyang

Are you compiling that on a 64-bit system? Otherwise you should note
that off_t is a signed 32-bit integer. You'd need to compile your test
program with -D_FILE_OFFSET_BITS=64 in order to make those pwrite()
calls work correctly past the 2Gb mark.
You also have potential 32/64-bit issues with the stat_file() routine.

Trond

> -----Original Message-----
> From: Jeff Moyer [mailto:jmoyer@redhat.com]
> Sent: Tuesday, March 03, 2009 10:10 AM
> To: Qiuyang Wu
> Cc: linux-nfs@vger.kernel.org; linux-fsdevel@vger.kernel.org
> Subject: Re: pread/pwrite bug on linux?
>
> Qiuyang Wu <Qiuyang.Wu@synopsys.com> writes:
>
> > Hi All,
> >
> > Are there any known bugs with pread/pwrite on RHEL Linux when the disk
> > partition is close to full?
> >
> > Reduced a complex application fatal down to a simple program just
> > opens a regular file and performs 1M sequential pwrite() of size 8KB
> > blocks; at every 100th write, does a pread() to load the very first
> > 8KB block and validate its content still matching what was originally
> > written.
>
> Could you attach your test program, please?
>
> > BEHAVIOR: pwrite() works for many iterations, then pread() suddenly
> > returns data of the requested size but filled with 0's, and strerror
> > shows errno="No such file or directory", condition
> >       if(size_to_read != pread(fd, buf, size_to_read, ...)) ...
> > is not triggered and application has to check errno immediately after
> > every call to pread.
>
> The value of errno is undefined if the pread call did not return -1.
>
> Cheers,
> Jeff


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pread/pwrite bug on linux?
       [not found]         ` <293BC70BB130E648A6631DB2F05B6E10019D6B277E-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
  2009-03-03 19:37           ` Trond Myklebust
@ 2009-03-04 18:48           ` Jeff Moyer
       [not found]             ` <x49k575jf9y.fsf-RRHT56Q3PSP4kTEheFKJxxDDeQx5vsVwAInAS/Ez/D0@public.gmane.org>
  1 sibling, 1 reply; 8+ messages in thread
From: Jeff Moyer @ 2009-03-04 18:48 UTC (permalink / raw)
  To: Qiuyang Wu; +Cc: linux-nfs@vger.kernel.org, linux-fsdevel@vger.kernel.org

Qiuyang Wu <Qiuyang.Wu-HKixBCOQz3hWk0Htik3J/w@public.gmane.org> writes:

> Hi Jeff,
>
> Attached the sample program. Should be able to compile as-is.
>
> Let me know your findings or need additional info.

I am not able to reproduce the problem.  I tried with a RHEL 4 system,
using exactly the kernel you listed (2.6.9-55.EL) on an i386 system.  I
tried against ext2, ext3, and an nfs mount exported from a RHEL 5
system.  I should note that I modified your program to detect short
writes and continue instead of reporting a bogus error.  I'll reiterate
that the value of errno is undefined if the library/system call did not
return -1.

I noticed that your test case used NFS.  What NFS server were you using?
Can you think of any other details that might affect the test?

Thanks,
Jeff
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: pread/pwrite bug on linux?
       [not found]             ` <x49k575jf9y.fsf-RRHT56Q3PSP4kTEheFKJxxDDeQx5vsVwAInAS/Ez/D0@public.gmane.org>
@ 2009-03-11  0:37               ` Qiuyang Wu
       [not found]                 ` <293BC70BB130E648A6631DB2F05B6E10019D89830F-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Qiuyang Wu @ 2009-03-11  0:37 UTC (permalink / raw)
  To: Jeff Moyer
  Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org


Thanks for the responses.

Just FYI that the bug was acknowledged, also it seems RH v5.3 does not have the problem...



-----Original Message-----
From: Jeff Moyer [mailto:jmoyer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org]
Sent: Wednesday, March 04, 2009 10:48 AM
To: Qiuyang Wu
Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; linux-fsdevel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: pread/pwrite bug on linux?

Qiuyang Wu <Qiuyang.Wu-HKixBCOQz3hWk0Htik3J/w@public.gmane.org> writes:

> Hi Jeff,
>
> Attached the sample program. Should be able to compile as-is.
>
> Let me know your findings or need additional info.

I am not able to reproduce the problem.  I tried with a RHEL 4 system,
using exactly the kernel you listed (2.6.9-55.EL) on an i386 system.  I
tried against ext2, ext3, and an nfs mount exported from a RHEL 5
system.  I should note that I modified your program to detect short
writes and continue instead of reporting a bogus error.  I'll reiterate
that the value of errno is undefined if the library/system call did not
return -1.

I noticed that your test case used NFS.  What NFS server were you using?
Can you think of any other details that might affect the test?

Thanks,
Jeff
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: pread/pwrite bug on linux?
       [not found]                 ` <293BC70BB130E648A6631DB2F05B6E10019D89830F-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
@ 2009-03-11 14:43                   ` Jeff Moyer
  0 siblings, 0 replies; 8+ messages in thread
From: Jeff Moyer @ 2009-03-11 14:43 UTC (permalink / raw)
  To: Qiuyang Wu; +Cc: linux-nfs@vger.kernel.org, linux-fsdevel@vger.kernel.org

Qiuyang Wu <Qiuyang.Wu-HKixBCOQz3hWk0Htik3J/w@public.gmane.org> writes:

> Thanks for the responses.
>
> Just FYI that the bug was acknowledged, also it seems RH v5.3 does not have the problem...

I'm sorry, but I don't understand what you mean.  Do you mean that the
bug was found and fixed, or just someone agreed that it exists, or
something else?  If there was a Red Hat bugzilla for it, I'd love to
know the number.

Thanks!
Jeff
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-03-11 14:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <b9ec419f0903021120g62814b6embe8eeaf354f8b535@mail.gmail.com>
2009-03-02 21:53 ` pread/pwrite bug on linux? Qiuyang Wu
     [not found]   ` <293BC70BB130E648A6631DB2F05B6E10019D6B224C-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
2009-03-03 18:10     ` Jeff Moyer
2009-03-03 18:47       ` Qiuyang Wu
     [not found]         ` <293BC70BB130E648A6631DB2F05B6E10019D6B277E-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
2009-03-03 19:37           ` Trond Myklebust
2009-03-03 20:07             ` Qiuyang Wu
2009-03-04 18:48           ` Jeff Moyer
     [not found]             ` <x49k575jf9y.fsf-RRHT56Q3PSP4kTEheFKJxxDDeQx5vsVwAInAS/Ez/D0@public.gmane.org>
2009-03-11  0:37               ` Qiuyang Wu
     [not found]                 ` <293BC70BB130E648A6631DB2F05B6E10019D89830F-uiPIUNf6hlr3OT/vyeh27fufCSb+aD3WLzEdoUbNIic@public.gmane.org>
2009-03-11 14:43                   ` Jeff Moyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).