* [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver
@ 2003-06-18 0:28 NeilBrown
2003-06-18 23:23 ` Marcelo Tosatti
0 siblings, 1 reply; 5+ messages in thread
From: NeilBrown @ 2003-06-18 0:28 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: linux-raid
### Comments for ChangeSet
From: Nathan Scott <nathans@sgi.com>
----------- Diffstat output ------------
./drivers/md/md.c | 1 +
1 files changed, 1 insertion(+)
diff ./drivers/md/md.c~current~ ./drivers/md/md.c
--- ./drivers/md/md.c~current~ 2003-06-18 10:02:57.000000000 +1000
+++ ./drivers/md/md.c 2003-06-18 10:03:43.000000000 +1000
@@ -2623,6 +2623,7 @@ static int md_ioctl(struct inode *inode,
case BLKRAGET:
case BLKRASET:
case BLKFLSBUF:
+ case BLKSSZGET:
case BLKBSZGET:
case BLKBSZSET:
err = blk_ioctl (dev, cmd, arg);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver
2003-06-18 0:28 [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver NeilBrown
@ 2003-06-18 23:23 ` Marcelo Tosatti
2003-06-19 0:13 ` Neil Brown
0 siblings, 1 reply; 5+ messages in thread
From: Marcelo Tosatti @ 2003-06-18 23:23 UTC (permalink / raw)
To: NeilBrown; +Cc: linux-raid
Neil,
This one doesnt apply cleanly against my tree.
On Wed, 18 Jun 2003, NeilBrown wrote:
> ### Comments for ChangeSet
>
> From: Nathan Scott <nathans@sgi.com>
>
>
> ----------- Diffstat output ------------
> ./drivers/md/md.c | 1 +
> 1 files changed, 1 insertion(+)
>
> diff ./drivers/md/md.c~current~ ./drivers/md/md.c
> --- ./drivers/md/md.c~current~ 2003-06-18 10:02:57.000000000 +1000
> +++ ./drivers/md/md.c 2003-06-18 10:03:43.000000000 +1000
> @@ -2623,6 +2623,7 @@ static int md_ioctl(struct inode *inode,
> case BLKRAGET:
> case BLKRASET:
> case BLKFLSBUF:
> + case BLKSSZGET:
> case BLKBSZGET:
> case BLKBSZSET:
> err = blk_ioctl (dev, cmd, arg);
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver
2003-06-18 23:23 ` Marcelo Tosatti
@ 2003-06-19 0:13 ` Neil Brown
2003-06-18 23:55 ` Marcelo Tosatti
0 siblings, 1 reply; 5+ messages in thread
From: Neil Brown @ 2003-06-19 0:13 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: linux-raid
On Wednesday June 18, marcelo@conectiva.com.br wrote:
>
> Neil,
>
> This one doesnt apply cleanly against my tree.
Odd... I did a "bk pull" and created the three patches against that.
I'll wait for bkbit.net to get up-to-date with you again and have a
look.
Thanks,
NeilBrown
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver
2003-06-19 0:13 ` Neil Brown
@ 2003-06-18 23:55 ` Marcelo Tosatti
2003-06-19 1:30 ` Neil Brown
0 siblings, 1 reply; 5+ messages in thread
From: Marcelo Tosatti @ 2003-06-18 23:55 UTC (permalink / raw)
To: Neil Brown; +Cc: linux-raid
Ok, I just pusheed your stuff to bkbits.net.
On Thu, 19 Jun 2003, Neil Brown wrote:
> On Wednesday June 18, marcelo@conectiva.com.br wrote:
> >
> > Neil,
> >
> > This one doesnt apply cleanly against my tree.
>
> Odd... I did a "bk pull" and created the three patches against that.
> I'll wait for bkbit.net to get up-to-date with you again and have a
> look.
>
> Thanks,
> NeilBrown
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver
2003-06-18 23:55 ` Marcelo Tosatti
@ 2003-06-19 1:30 ` Neil Brown
0 siblings, 0 replies; 5+ messages in thread
From: Neil Brown @ 2003-06-19 1:30 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: linux-raid
On Wednesday June 18, marcelo@conectiva.com.br wrote:
>
> Ok, I just pusheed your stuff to bkbits.net.
>
Thanks.
It seems that patch is now in there. Maybe I sent it twice by
mistake.
The only missing bit is the following which I sent as a followup to on
of the NFS patches.
Thanks,
NeilBrown
diff ./net/sunrpc/svcsock.c~current~ ./net/sunrpc/svcsock.c
--- ./net/sunrpc/svcsock.c~current~ 2003-06-19 11:27:05.000000000 +1000
+++ ./net/sunrpc/svcsock.c 2003-06-19 11:27:05.000000000 +1000
@@ -826,7 +826,7 @@ svc_tcp_recvfrom(struct svc_rqst *rqstp)
goto error;
svsk->sk_tcplen += len;
if (len < want) {
- dprintk("svc: short recvfrom while reading record length (%d of %d)\n",
+ dprintk("svc: short recvfrom while reading record length (%d of %ld)\n",
len, want);
svc_sock_received(svsk);
return -EAGAIN; /* record header not complete */
@@ -973,7 +973,7 @@ svc_tcp_init(struct svc_sock *svsk)
3 * svsk->sk_server->sv_bufsz);
set_bit(SK_CHNGBUF, &svsk->sk_flags);
- if (sk->sk_state != TCP_ESTABLISHED)
+ if (sk->state != TCP_ESTABLISHED)
set_bit(SK_CLOSE, &svsk->sk_flags);
}
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-06-19 1:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-18 0:28 [PATCH] md - 2 of 3 - Add BLKSSZGET ioctl for md driver NeilBrown
2003-06-18 23:23 ` Marcelo Tosatti
2003-06-19 0:13 ` Neil Brown
2003-06-18 23:55 ` Marcelo Tosatti
2003-06-19 1:30 ` Neil Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox