[LU-394] LND failure casued by discontiguous KIOV pages Created: 06/Jun/11  Updated: 26/Jul/11  Resolved: 26/Jul/11

Status: Resolved
Project: Lustre
Component/s: None
Affects Version/s: Lustre 2.1.0
Fix Version/s: Lustre 2.1.0

Type: Bug Priority: Critical
Reporter: Wally Wang (Inactive) Assignee: Jinshan Xiong (Inactive)
Resolution: Fixed Votes: 0
Labels: None

Attachments: File c38.dk.lu394     File nid0037.dk    
Severity: 2
Rank (Obsolete): 4943

 Description   

Cray's gnilnd is running into a hole in kiov list in Lustre 2.1:

LustreError: 17837:0:(gnilnd_cb.c:594:kgnilnd_setup_phys_buffer()) Can't make payload
contiguous in I/O VM:page 17, offset 0, nob 6350, kiov_offset 0 kiov_len 2254
LustreError: 17837:0:(gnilnd_cb.c:1751:kgnilnd_send()) unable to setup buffer: -22

It used to be that only the first and last page in an IOV were allowed
to be of a offset + length < PAGE_SIZE.

It doesn't have this problem with 1.8 client and 2.1 server.

This problem can be reproduced by "fsx-linux -WR -dn -N 10000 junkfile".

The osc_brw() is never called and the unfragmented pages logic is not exercised in 2.1



 Comments   
Comment by Oleg Drokin [ 06/Jun/11 ]

The partial pages in the middle of a transfer is strange indeed and should not be happening.
I am not sure I understand your obd_brw reference, it's only used for obdecho in both 1.8 and 2.1, 1.8 also uses it for prefetching partially overwritten pages and in lloop.

Teh diagnostic printed is somewhat strange. For a page 17 with offset 0 there is no wat nob could be 6350, that's bigger than 4096 that could fit into a page and there is an assertion in osc that enforces that.

Can you obtain a fuller list of what sort of IOV was passed in? I'll try to run fsx with some extra debug locally soon, but I think existing LNDs would fail very similarly if such partial pages were ever sent through them.

Comment by Wally Wang (Inactive) [ 07/Jun/11 ]

Attached is the client debug log.

I added a CDEBUG at the end of ptlrpc_add_bulk_page() <marked by ww -"> and also "turned on" the CDEBUB<put page..> in osc_build_req() for more information.

Ignore the osc_brw comment where I thought used to be the place for unframenting the list.

Comment by Oleg Drokin [ 07/Jun/11 ]

Ok, I reviewed the log and I do see a problem of sorts.

Basically we have setup like this:
pages 0, 1, 40...46, 49 that are fully populated. Page 47 that is not.

Now since there is page 49 already, that means either truncate failed to chop it off or the page 47 was not extended like it should have been.

Digging a bit more into the log I see there is a "seek" between page 47 write and page 49 write, so it seems to be the case of ap_make_ready not extending the (now middle) page 47 to the end of the page boundary.

Comment by Oleg Drokin [ 07/Jun/11 ]

Jinshan, please see my previous comment.
It seems we have a case of clio code not extending written pages to page boundary somewhere

Comment by Jinshan Xiong (Inactive) [ 07/Jun/11 ]

When it was writing page #49, it ran out of quota, so a sync write was issued and triggered cached pages to be written as well. Since page # 49 is a sync write, it won't update the file size until the write succeeds, so that in ap_refresh_count() of page # 47, it didn;t return full page size - this is all right.

The problem is that we cannot combine cached partial pages with sync page in one RPC. For example, in this bug as what we have seen, we shouldn't issue page #47 and #49 in the same RPC. Otherwise, we don't know what's the exact kms in case the write of page #49 fails.

I realize there is one more issue with quota at ost side, where in filter_commitrw_write():

                if ((flags & OBD_BRW_NOQUOTA) ||
                    (flags & (OBD_BRW_FROM_GRANT | OBD_BRW_SYNC)) ==
                     OBD_BRW_FROM_GRANT)
                        iobuf->dr_ignore_quota = 1;

it checks if the page is written in sync, otherwise ignore_quota is set. This means we cannot mix SYNC and ASYNC pages.

I've got another idea to fix this issue: check the OBD_BRW_SYNC flag in osc_send_oap_rpc() and do not mix sync and async pages.

Comment by Jinshan Xiong (Inactive) [ 07/Jun/11 ]

Hi Wally,

Can you please try patch: http://review.whamcloud.com/911

Thanks.

Comment by Wally Wang (Inactive) [ 07/Jun/11 ]

Hit assertion soon after client mount:

[2011-06-07 19:01:09][c0-0c1s7n3]LustreError: 3606:0:(osc_request.c:2586:osc_send_oap_rpc()) ASSERTION(ergo(grant, oap->oap_cmd == OBD_BRW_WRITE)) failed
[2011-06-07 19:01:09][c0-0c1s7n3]LustreError: 3606:0:(osc_request.c:2586:osc_send_oap_rpc()) LBUG
[2011-06-07 19:01:09][c0-0c1s7n3]Pid: 3606, comm: xtnhc
[2011-06-07 19:01:09][c0-0c1s7n3]Call Trace:
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810072a9>] try_stack_unwind+0x149/0x190
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff81005c80>] dump_trace+0x90/0x300
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa012f802>] libcfs_debug_dumpstack+0x52/0x80 [libcfs]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa012fd71>] lbug_with_loc+0x71/0xe0 [libcfs]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa013b671>] libcfs_assertion_failed+0x61/0x70 [libcfs]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa04ddc3e>] osc_send_oap_rpc+0x62e/0x1d80 [osc]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa04df65e>] osc_check_rpcs+0x2ce/0x470 [osc]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa04f0b20>] osc_io_submit+0x220/0x4d0 [osc]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa02306e8>] cl_io_submit_rw+0x78/0x1a0 [obdclass]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa05517c4>] lov_io_submit+0x254/0xb40 [lov]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa02306e8>] cl_io_submit_rw+0x78/0x1a0 [obdclass]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffffa05c1ca4>] ll_writepage+0x2c4/0x480 [lustre]
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810a68a2>] __writepage+0x12/0x50
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810a6fe7>] write_cache_pages+0x227/0x460
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810a723f>] generic_writepages+0x1f/0x30
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810a726c>] do_writepages+0x1c/0x40
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff8109f200>] __filemap_fdatawrite_range+0x50/0x60
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff8109f262>] filemap_write_and_wait_range+0x52/0x80
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810fcc56>] vfs_fsync_range+0x76/0xd0
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810fcd18>] vfs_fsync+0x18/0x20
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810fcd59>] do_fsync+0x39/0x60
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff810fcdab>] sys_fsync+0xb/0x10
[2011-06-07 19:01:09][c0-0c1s7n3] [<ffffffff8100272b>] system_call_fastpath+0x16/0x1b
[2011-06-07 19:01:09][c0-0c1s7n3] [<00007ffff78f9e60>] 0x7ffff78f9e60

Comment by Jinshan Xiong (Inactive) [ 08/Jun/11 ]

my fault. I pushed another on http://review.whamcloud.com/911, please try it again.

Comment by Wally Wang (Inactive) [ 09/Jun/11 ]

It works fine now with the patch.

Comment by Peter Jones [ 22/Jun/11 ]

For the record, the patch has been updated since Cray confirmed that it worked. Cray will re-test to confirm that the latest version still works.

Comment by Jinshan Xiong (Inactive) [ 22/Jun/11 ]

Hi Wally,

Can you please repull the patch and do the test again?

Thanks,
Jinshan

Comment by Wally Wang (Inactive) [ 23/Jun/11 ]

Will test patch set 6 tonight. I tested the patch set 5 and got LBUG:

c0-0c1s6n3 LustreError: 3680:0:(osc_request.c:2593:osc_send_oap_rpc()) Uncontiguous: max_off:278528off:0, cnt:1576
c0-0c1s6n3 LustreError: 3680:0:(osc_request.c:2594:osc_send_oap_rpc()) ASSERTION(0) failed
c0-0c1s6n3 LustreError: 3680:0:(osc_request.c:2594:osc_send_oap_rpc()) LBUG
c0-0c1s6n3 Pid: 3680, comm: fsx-linux-aio
c0-0c1s6n3 Call Trace:
c0-0c1s6n3 [<ffffffff810072a9>] try_stack_unwind+0x149/0x190
c0-0c1s6n3 [<ffffffff81005c80>] dump_trace+0x90/0x300
c0-0c1s6n3 [<ffffffffa01318b2>] libcfs_debug_dumpstack+0x52/0x80 [libcfs]
c0-0c1s6n3 [<ffffffffa0131e21>] lbug_with_loc+0x71/0xe0 [libcfs]
c0-0c1s6n3 [<ffffffffa013d7b1>] libcfs_assertion_failed+0x61/0x70 [libcfs]
c0-0c1s6n3 [<ffffffffa04de5a9>] osc_send_oap_rpc+0x649/0x1d30 [osc]
c0-0c1s6n3 [<ffffffffa04dff66>] osc_check_rpcs+0x2d6/0x470 [osc]
c0-0c1s6n3 [<ffffffffa04f1a10>] osc_io_submit+0x220/0x4d0 [osc]
c0-0c1s6n3 [<ffffffffa0232f78>] cl_io_submit_rw+0x78/0x1a0 [obdclass]
c0-0c1s6n3 [<ffffffffa05516e4>] lov_io_submit+0x254/0xb40 [lov]
c0-0c1s6n3 [<ffffffffa0232f78>] cl_io_submit_rw+0x78/0x1a0 [obdclass]
c0-0c1s6n3 [<ffffffffa02356ea>] cl_io_submit_sync+0x9a/0x1c0 [obdclass]
c0-0c1s6n3 [<ffffffffa05e915f>] vvp_page_sync_io+0x6f/0x120 [lustre]
c0-0c1s6n3 [<ffffffffa05e96c5>] vvp_io_commit_write+0x4b5/0x510 [lustre]
c0-0c1s6n3 [<ffffffffa0235c5d>] cl_io_commit_write+0xad/0x1f0 [obdclass]
c0-0c1s6n3 [<ffffffffa05c095e>] ll_commit_write+0x10e/0x290 [lustre]
c0-0c1s6n3 [<ffffffffa05d886c>] ll_write_end+0x2c/0x60 [lustre]
c0-0c1s6n3 [<ffffffff810a28a1>] generic_file_buffered_write+0x171/0x280
c0-0c1s6n3 [<ffffffff810a36e1>] __generic_file_aio_write+0x251/0x450
c0-0c1s6n3 [<ffffffff810a393d>] generic_file_aio_write+0x5d/0xc0
c0-0c1s6n3 [<ffffffffa05e9e15>] vvp_io_write_start+0x95/0x250 [lustre]
c0-0c1s6n3 [<ffffffffa023323a>] cl_io_start+0x6a/0x150 [obdclass]
c0-0c1s6n3 [<ffffffffa0237003>] cl_io_loop+0x123/0x1e0 [obdclass]
c0-0c1s6n3 [<ffffffffa0592fa3>] ll_file_io_generic+0x3d3/0x4d0 [lustre]
c0-0c1s6n3 [<ffffffffa05932b8>] ll_file_aio_write+0x218/0x310 [lustre]
c0-0c1s6n3 [<ffffffff81112f0c>] aio_rw_vect_retry+0x7c/0x1e0
c0-0c1s6n3 [<ffffffff81114802>] aio_run_iocb+0x72/0x170
c0-0c1s6n3 [<ffffffff81115312>] sys_io_submit+0x302/0x700
c0-0c1s6n3 [<ffffffff8100272b>] system_call_fastpath+0x16/0x1b
c0-0c1s6n3 [<0000000000402957>] 0x402957
c0-0c1s6n3 Kernel panic - not syncing: LBUG

Comment by Jinshan Xiong (Inactive) [ 23/Jun/11 ]

Hi Wally, please try patch set 7, thanks.

Comment by Wally Wang (Inactive) [ 24/Jun/11 ]

Patch set 7 works. Thanks!

Comment by Peter Jones [ 11/Jul/11 ]

Dropping priority to remove from 2.1 blockers list. It is being tracked as blocker under LU437

Comment by Wally Wang (Inactive) [ 15/Jul/11 ]

I just tried patchset 14 and the problem is reoccurring:

2011-07-15T17:52:24.194477-05:00 c0-0c1s5n2 LNetError: 22816:0:(gnilnd_cb.c:594:kgnilnd_setup_phys_buffer()) Can't make payload contiguous in I/O VM:page 17, offset 0, nob 6350, kiov_offset 0 kiov_len 2254

Comment by Jinshan Xiong (Inactive) [ 16/Jul/11 ]

Hi Wally,

Patch set 14 is supposed to catch this kind of error in osc layer, but unfortunately there was an defect in the patch. Can you please try patch set 15 and collect log for me when you hit the bug again?

Thanks,

Comment by Wally Wang (Inactive) [ 18/Jul/11 ]

debug log is attached, the ost console shows:

2011-07-18T15:15:28.004617-05:00 c0-0c1s5n2 LNetError: 15810:0:(gnilnd_cb.c:594:kgnilnd_setup_phys_buffer()) Can't make payload contiguous in I/O VM:page 17, offset 0, nob 6350, kiov_offset 0 kiov_len 2254
2011-07-18T15:15:28.004650-05:00 c0-0c1s5n2 LNetError: 15810:0:(gnilnd_cb.c:1751:kgnilnd_send()) unable to setup buffer: -22

Comment by Jinshan Xiong (Inactive) [ 18/Jul/11 ]

From the log, it looks like the last page(index 49) was still added to the request. Are you sure you're using the correct patch? Can you please run the test case sanity:219 to check if it works?

I'm going to provide you a new patch with more debug info.

Comment by Wally Wang (Inactive) [ 19/Jul/11 ]

Sorry, it actually works.

I must have mis-labeled the image. After a total rebuild/install, it all works fine.

Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,el5,ofa #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_object.c
  • lustre/include/obd_support.h
  • lustre/osc/osc_lock.c
  • lustre/obdclass/cl_lock.c
  • lustre/osc/osc_request.c
  • lustre/tests/sanity.sh
  • lustre/llite/vvp_io.c
  • lustre/osc/osc_io.c
  • lustre/obdclass/cl_page.c
  • lustre/include/cl_object.h
  • lustre/osc/osc_page.c
Comment by Peter Jones [ 26/Jul/11 ]

Landed for 2.1

Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,el5,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/obdclass/cl_lock.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_request.c
  • lustre/osc/osc_page.c
  • lustre/llite/vvp_io.c
  • lustre/include/cl_object.h
  • lustre/osc/osc_io.c
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_object.c
  • lustre/osc/osc_lock.c
  • lustre/include/obd_support.h
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,sles11,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_lock.c
  • lustre/include/obd_support.h
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_page.c
  • lustre/osc/osc_request.c
  • lustre/llite/vvp_io.c
  • lustre/osc/osc_io.c
  • lustre/obdclass/cl_lock.c
  • lustre/include/cl_object.h
  • lustre/osc/osc_object.c
  • lustre/tests/sanity.sh
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,el6,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/llite/vvp_io.c
  • lustre/osc/osc_lock.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_io.c
  • lustre/obdclass/cl_page.c
  • lustre/obdclass/cl_lock.c
  • lustre/osc/osc_page.c
  • lustre/include/obd_support.h
  • lustre/osc/osc_object.c
  • lustre/osc/osc_request.c
  • lustre/include/cl_object.h
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,ubuntu1004,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_request.c
  • lustre/osc/osc_lock.c
  • lustre/osc/osc_page.c
  • lustre/llite/vvp_io.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_io.c
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_object.c
  • lustre/obdclass/cl_lock.c
  • lustre/include/cl_object.h
  • lustre/include/obd_support.h
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,client,el6,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/llite/vvp_io.c
  • lustre/tests/sanity.sh
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_page.c
  • lustre/include/cl_object.h
  • lustre/osc/osc_object.c
  • lustre/obdclass/cl_lock.c
  • lustre/include/obd_support.h
  • lustre/osc/osc_request.c
  • lustre/osc/osc_lock.c
  • lustre/osc/osc_io.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,server,el5,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/obdclass/cl_lock.c
  • lustre/include/cl_object.h
  • lustre/tests/sanity.sh
  • lustre/osc/osc_io.c
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_lock.c
  • lustre/osc/osc_page.c
  • lustre/osc/osc_request.c
  • lustre/include/obd_support.h
  • lustre/osc/osc_object.c
  • lustre/llite/vvp_io.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,server,el6,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/include/cl_object.h
  • lustre/obdclass/cl_lock.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_io.c
  • lustre/include/obd_support.h
  • lustre/osc/osc_request.c
  • lustre/osc/osc_page.c
  • lustre/obdclass/cl_page.c
  • lustre/llite/vvp_io.c
  • lustre/osc/osc_object.c
  • lustre/osc/osc_lock.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,server,el5,ofa #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_lock.c
  • lustre/include/cl_object.h
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_io.c
  • lustre/osc/osc_request.c
  • lustre/include/obd_support.h
  • lustre/obdclass/cl_lock.c
  • lustre/osc/osc_page.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_object.c
  • lustre/llite/vvp_io.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,server,el6,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/tests/sanity.sh
  • lustre/include/obd_support.h
  • lustre/osc/osc_request.c
  • lustre/osc/osc_io.c
  • lustre/llite/vvp_io.c
  • lustre/osc/osc_page.c
  • lustre/osc/osc_object.c
  • lustre/include/cl_object.h
  • lustre/osc/osc_lock.c
  • lustre/obdclass/cl_lock.c
  • lustre/obdclass/cl_page.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,server,el5,ofa #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_page.c
  • lustre/obdclass/cl_page.c
  • lustre/llite/vvp_io.c
  • lustre/osc/osc_io.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_object.c
  • lustre/osc/osc_lock.c
  • lustre/include/obd_support.h
  • lustre/osc/osc_request.c
  • lustre/obdclass/cl_lock.c
  • lustre/include/cl_object.h
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,server,el5,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_io.c
  • lustre/include/obd_support.h
  • lustre/obdclass/cl_page.c
  • lustre/osc/osc_request.c
  • lustre/tests/sanity.sh
  • lustre/include/cl_object.h
  • lustre/osc/osc_lock.c
  • lustre/osc/osc_object.c
  • lustre/llite/vvp_io.c
  • lustre/obdclass/cl_lock.c
  • lustre/osc/osc_page.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,client,el5,inkernel #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_request.c
  • lustre/osc/osc_lock.c
  • lustre/include/cl_object.h
  • lustre/osc/osc_page.c
  • lustre/obdclass/cl_lock.c
  • lustre/osc/osc_io.c
  • lustre/include/obd_support.h
  • lustre/obdclass/cl_page.c
  • lustre/llite/vvp_io.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_object.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,client,el5,ofa #228
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 419016ac3e53e798453106ec04412a4843620916
Files :

  • lustre/osc/osc_page.c
  • lustre/osc/osc_request.c
  • lustre/tests/sanity.sh
  • lustre/osc/osc_io.c
  • lustre/osc/osc_object.c
  • lustre/osc/osc_lock.c
  • lustre/obdclass/cl_page.c
  • lustre/llite/vvp_io.c
  • lustre/include/obd_support.h
  • lustre/obdclass/cl_lock.c
  • lustre/include/cl_object.h
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,el5,ofa #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,el5,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,server,el5,ofa #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,server,el6,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,server,el6,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,server,el5,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,sles11,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,client,el6,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,el6,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,server,el5,ofa #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » x86_64,client,ubuntu1004,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,server,el5,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,client,el5,ofa #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Comment by Build Master (Inactive) [ 26/Jul/11 ]

Integrated in lustre-master » i686,client,el5,inkernel #230
LU-394: LND failure casued by discontiguous KIOV

Oleg Drokin : 0cdae78b8751fee4f9da67750ffda488d6ea2638
Files :

  • lustre/osc/osc_request.c
Generated at Sat Feb 10 01:06:35 UTC 2024 using Jira 9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c.