* Re: Connectathon Issues [not found] <009501d060e6$b54c3780$1fe4a680$@soft-forge.com> @ 2015-03-17 22:35 ` Steve Dickson 2015-03-18 1:26 ` Frank Filz 0 siblings, 1 reply; 7+ messages in thread From: Steve Dickson @ 2015-03-17 22:35 UTC (permalink / raw) To: Rupert Dance; +Cc: linux-nfs On 03/17/2015 03:15 PM, Rupert Dance wrote: > Nroff > > ./stat: no data in nroff.time I believe this has to do with the format of time 'time' command. stat.c expects a particular date format that changes whether /usr/bin/time is used or the shell version of data. try adding TIME=/usr/bin/time to the top of general/runtests.wrk steved. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Connectathon Issues 2015-03-17 22:35 ` Connectathon Issues Steve Dickson @ 2015-03-18 1:26 ` Frank Filz 2015-03-19 15:04 ` Steve Dickson 0 siblings, 1 reply; 7+ messages in thread From: Frank Filz @ 2015-03-18 1:26 UTC (permalink / raw) To: Steve Dickson; +Cc: Rupert Dance, linux-nfs@vger.kernel.org There is a patched cthon04 out there. I think from Jeff Layton. Frank Sent from my iPhone On Mar 17, 2015, at 3:35 PM, Steve Dickson <SteveD@redhat.com> wrote: > On 03/17/2015 03:15 PM, Rupert Dance wrote: >> Nroff >> >> ./stat: no data in nroff.time > I believe this has to do with the format of time 'time' command. > stat.c expects a particular date format that changes whether > /usr/bin/time is used or the shell version of data. > > try adding TIME=/usr/bin/time to the top of general/runtests.wrk > > steved. > -- > To unsubscribe from this list: send the line "unsubscribe linux-nfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Connectathon Issues 2015-03-18 1:26 ` Frank Filz @ 2015-03-19 15:04 ` Steve Dickson 2015-03-19 16:57 ` Rupert Dance 0 siblings, 1 reply; 7+ messages in thread From: Steve Dickson @ 2015-03-19 15:04 UTC (permalink / raw) To: Frank Filz; +Cc: Rupert Dance, linux-nfs@vger.kernel.org On 03/17/2015 09:26 PM, Frank Filz wrote: > There is a patched cthon04 out there. I think from Jeff Layton. > > Frank > > Sent from my iPhone > > On Mar 17, 2015, at 3:35 PM, Steve Dickson <SteveD@redhat.com> wrote: > >> On 03/17/2015 03:15 PM, Rupert Dance wrote: >>> Nroff >>> >>> ./stat: no data in nroff.time >> I believe this has to do with the format of time 'time' command. >> stat.c expects a particular date format that changes whether >> /usr/bin/time is used or the shell version of data. >> >> try adding TIME=/usr/bin/time to the top of general/runtests.wrk Taking a closer look there is code that is commented out that will solve this problem. # if the default time command doesn't return the right format, # you may have to use the following lines #case `uname` in #[lL]inux*) # TIME=/usr/bin/time # ;; #*) # TIME=/bin/time # ;; #esac #if [ ! -f $TIME ] #then # TIME=/usr/bin/time # if [ ! -f $TIME ] # then # echo "Where is the time command?" # exit 1 # fi #fi Maybe its time to uncomment it... steved. ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: Connectathon Issues 2015-03-19 15:04 ` Steve Dickson @ 2015-03-19 16:57 ` Rupert Dance 2015-03-26 17:19 ` Steve Dickson 0 siblings, 1 reply; 7+ messages in thread From: Rupert Dance @ 2015-03-19 16:57 UTC (permalink / raw) To: 'Steve Dickson', 'Frank Filz'; +Cc: linux-nfs Steve, We tried uncommenting the code but we are still seeing failures. We are running Connectathon on a variety of systems pairs testing both Mellanox and Intel Hardware. Most of the combinations pass the Connectathon Basic, Locking and Special tests but fail the General tests with the error message "Nroff ./stat: no data in nroff.time" There are several other combinations that cause other errors: 1. The test hangs and no error is reported. In these cases the client system MUST be restarted before it becomes usable again. The server system is restarted to get back to a known good state and clear the exports before restarting testing 2. Connectathon Basic test hangs with the client system displaying: ./test5: read and write Thanks Rupert -----Original Message----- From: Steve Dickson [mailto:SteveD@redhat.com] Sent: Thursday, March 19, 2015 11:04 AM To: Frank Filz Cc: Rupert Dance; linux-nfs@vger.kernel.org Subject: Re: Connectathon Issues On 03/17/2015 09:26 PM, Frank Filz wrote: > There is a patched cthon04 out there. I think from Jeff Layton. > > Frank > > Sent from my iPhone > > On Mar 17, 2015, at 3:35 PM, Steve Dickson <SteveD@redhat.com> wrote: > >> On 03/17/2015 03:15 PM, Rupert Dance wrote: >>> Nroff >>> >>> ./stat: no data in nroff.time >> I believe this has to do with the format of time 'time' command. >> stat.c expects a particular date format that changes whether >> /usr/bin/time is used or the shell version of data. >> >> try adding TIME=/usr/bin/time to the top of general/runtests.wrk Taking a closer look there is code that is commented out that will solve this problem. # if the default time command doesn't return the right format, # you may have to use the following lines #case `uname` in #[lL]inux*) # TIME=/usr/bin/time # ;; #*) # TIME=/bin/time # ;; #esac #if [ ! -f $TIME ] #then # TIME=/usr/bin/time # if [ ! -f $TIME ] # then # echo "Where is the time command?" # exit 1 # fi #fi Maybe its time to uncomment it... steved. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Connectathon Issues 2015-03-19 16:57 ` Rupert Dance @ 2015-03-26 17:19 ` Steve Dickson 2015-03-26 17:57 ` Chuck Lever 0 siblings, 1 reply; 7+ messages in thread From: Steve Dickson @ 2015-03-26 17:19 UTC (permalink / raw) To: Rupert Dance; +Cc: linux-nfs Sorry for the delayed response On 03/19/2015 12:57 PM, Rupert Dance wrote: > We tried uncommenting the code but we are still seeing failures. We are > running Connectathon on a variety of systems pairs testing both Mellanox and > Intel Hardware. Most of the combinations pass the Connectathon Basic, > Locking and Special tests but fail the General tests with the error message > "Nroff ./stat: no data in nroff.time" What does output from the time command look like? > > There are several other combinations that cause other errors: > > 1. The test hangs and no error is reported. In these cases the client > system MUST be restarted before it becomes usable again. The server system > is restarted to get back to a known good state and clear the exports before > restarting testing > > 2. Connectathon Basic test hangs with the client system displaying: ./test5: > read and write Is it really hung or is it just slow? On the client, use tshark host <server> to see if there is anything going over the wire... steved. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Connectathon Issues 2015-03-26 17:19 ` Steve Dickson @ 2015-03-26 17:57 ` Chuck Lever 2015-03-27 19:00 ` Rupert Dance 0 siblings, 1 reply; 7+ messages in thread From: Chuck Lever @ 2015-03-26 17:57 UTC (permalink / raw) To: Steve Dickson; +Cc: Rupert Dance, Linux NFS Mailing List On Mar 26, 2015, at 12:19 PM, Steve Dickson <SteveD@redhat.com> wrote: >> There are several other combinations that cause other errors: >> >> 1. The test hangs and no error is reported. In these cases the client >> system MUST be restarted before it becomes usable again. The server system >> is restarted to get back to a known good state and clear the exports before >> restarting testing >> >> 2. Connectathon Basic test hangs with the client system displaying: ./test5: >> read and write > Is it really hung or is it just slow? On the client, use tshark host <server> > to see if there is anything going over the wire… I’m guessing Rupert is using NFS/RDMA. If true, tshark is not going to be helpful. Rupert, what is the output of “uname -a” on your systems? -- Chuck Lever chuck[dot]lever[at]oracle[dot]com ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: Connectathon Issues 2015-03-26 17:57 ` Chuck Lever @ 2015-03-27 19:00 ` Rupert Dance 0 siblings, 0 replies; 7+ messages in thread From: Rupert Dance @ 2015-03-27 19:00 UTC (permalink / raw) To: 'Chuck Lever', 'Steve Dickson' Cc: 'Linux NFS Mailing List' Chuck, Here is what the systems are running, 3.10.0-123.el7.x86_64 #1 SMP Thu Sep 11 15:55:14 CDT 2014 x86_64 x86_64 x86_64 GNU/Linux Scientific Linux release 7.0 (Nitrogen) Thanks Rupert -----Original Message----- From: Chuck Lever [mailto:chuck.lever@oracle.com] Sent: Thursday, March 26, 2015 1:58 PM To: Steve Dickson Cc: Rupert Dance; Linux NFS Mailing List Subject: Re: Connectathon Issues On Mar 26, 2015, at 12:19 PM, Steve Dickson <SteveD@redhat.com> wrote: >> There are several other combinations that cause other errors: >> >> 1. The test hangs and no error is reported. In these cases the >> client system MUST be restarted before it becomes usable again. The >> server system is restarted to get back to a known good state and >> clear the exports before restarting testing >> >> 2. Connectathon Basic test hangs with the client system displaying: ./test5: >> read and write > Is it really hung or is it just slow? On the client, use tshark host > <server> to see if there is anything going over the wire. I'm guessing Rupert is using NFS/RDMA. If true, tshark is not going to be helpful. Rupert, what is the output of "uname -a" on your systems? -- Chuck Lever chuck[dot]lever[at]oracle[dot]com ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-03-27 19:00 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <009501d060e6$b54c3780$1fe4a680$@soft-forge.com>
2015-03-17 22:35 ` Connectathon Issues Steve Dickson
2015-03-18 1:26 ` Frank Filz
2015-03-19 15:04 ` Steve Dickson
2015-03-19 16:57 ` Rupert Dance
2015-03-26 17:19 ` Steve Dickson
2015-03-26 17:57 ` Chuck Lever
2015-03-27 19:00 ` Rupert Dance
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.