public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PATCH] scsi updates for 2.6.12-rc2
@ 2005-04-14  1:27 James Bottomley
  2005-04-15 10:36 ` Pavel Machek
  0 siblings, 1 reply; 4+ messages in thread
From: James Bottomley @ 2005-04-14  1:27 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: SCSI Mailing List, Linux Kernel

This is a small set of bugfixes for 2.6.12-rc2 ... you asked me to try
git, so I did (I actually updated my bk backport script simply to export
from a BK tree to a git tree).  For the time being, I plan to keep the
scsi changes in BK, but I'll export them for you to try merging

The patch (against kernel-test.git) is here

rsync://www.parisc-linux.org/~jejb/scsi-rc-fixes-2.6.git

So let's see if you can apply it ;-)

The shortlog (ok, generated by BK) is

Andreas Herrmann:
  o zfcp: convert to compat_ioctl

Douglas Gilbert:
  o sg.c: update

James Bottomley:
  o updates for CFQ oops fix
  o finally fix 53c700 to use the generic iomem infrastructure

Jens Axboe:
  o fix NMI lockup with CFQ scheduler

And the diffstat (generated from git) is:

 drivers/block/ll_rw_blk.c    |    9 +
 drivers/s390/scsi/zfcp_aux.c |   34 ++-----
 drivers/scsi/53c700.c        |    3 
 drivers/scsi/53c700.h        |  192 ++++------------------------------------
 drivers/scsi/Kconfig         |   10 --
 drivers/scsi/NCR_D700.c      |    5 -
 drivers/scsi/lasi700.c       |    1 
 drivers/scsi/scsi_lib.c      |    6 -
 drivers/scsi/scsi_scan.c     |    1 
 drivers/scsi/scsi_sysfs.c    |    3 
 drivers/scsi/sg.c            |  203 +++++++++++++++++++++++++++----------------
 drivers/scsi/sim710.c        |    5 -
 include/linux/blkdev.h       |    5 -
 include/scsi/scsi_device.h   |    2 
 14 files changed, 191 insertions(+), 288 deletions(-)

James



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

* Re: [GIT PATCH] scsi updates for 2.6.12-rc2
  2005-04-14  1:27 [GIT PATCH] scsi updates for 2.6.12-rc2 James Bottomley
@ 2005-04-15 10:36 ` Pavel Machek
  2005-04-15 11:25   ` Pavel Machek
  0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2005-04-15 10:36 UTC (permalink / raw)
  To: James Bottomley
  Cc: Linus Torvalds, Andrew Morton, SCSI Mailing List, Linux Kernel

Hi!

> This is a small set of bugfixes for 2.6.12-rc2 ... you asked me to try
> git, so I did (I actually updated my bk backport script simply to export
> from a BK tree to a git tree).  For the time being, I plan to keep the
> scsi changes in BK, but I'll export them for you to try merging
> 
> The patch (against kernel-test.git) is here
> 
> rsync://www.parisc-linux.org/~jejb/scsi-rc-fixes-2.6.git

Can you du -s on it? Just curious. I started rsync on it, but because
it is not standard gzip files, it is difficult to see anything
interesting...

								Pavel
-- 
Boycott Kodak -- for their patent abuse against Java.

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

* Re: [GIT PATCH] scsi updates for 2.6.12-rc2
  2005-04-15 10:36 ` Pavel Machek
@ 2005-04-15 11:25   ` Pavel Machek
  2005-04-15 14:08     ` James Bottomley
  0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2005-04-15 11:25 UTC (permalink / raw)
  To: James Bottomley
  Cc: Linus Torvalds, Andrew Morton, SCSI Mailing List, Linux Kernel

Hi!

> > This is a small set of bugfixes for 2.6.12-rc2 ... you asked me to try
> > git, so I did (I actually updated my bk backport script simply to export
> > from a BK tree to a git tree).  For the time being, I plan to keep the
> > scsi changes in BK, but I'll export them for you to try merging
> > 
> > The patch (against kernel-test.git) is here
> > 
> > rsync://www.parisc-linux.org/~jejb/scsi-rc-fixes-2.6.git
> 
> Can you du -s on it? Just curious. I started rsync on it, but because
> it is not standard gzip files, it is difficult to see anything
> interesting...

Okay, so du -s is:

root@amd:~# du -sh /tmp/delme.git/
109M    /tmp/delme.git/

Not as bad as I expected, but still quite a lot of data for few
changes.

								Pavel
-- 
Boycott Kodak -- for their patent abuse against Java.

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

* Re: [GIT PATCH] scsi updates for 2.6.12-rc2
  2005-04-15 11:25   ` Pavel Machek
@ 2005-04-15 14:08     ` James Bottomley
  0 siblings, 0 replies; 4+ messages in thread
From: James Bottomley @ 2005-04-15 14:08 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Linus Torvalds, Andrew Morton, SCSI Mailing List, Linux Kernel

On Fri, 2005-04-15 at 13:25 +0200, Pavel Machek wrote:
> Okay, so du -s is:
> 
> root@amd:~# du -sh /tmp/delme.git/
> 109M    /tmp/delme.git/
> 
> Not as bad as I expected, but still quite a lot of data for few
> changes.

Erm, but that's why it's an rsync archive.  You're supposed to have a
copy of the kernel archive already.  The one at

rsync://www.kernel.org/pub/linux/kernel/people/torvalds/kernel-test.git

Then, the few additional files I have rsync across very fast.

Take a look at how git works:  files, once added to the object tree by
sha1 hash stay there forever.

James



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

end of thread, other threads:[~2005-04-15 14:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-14  1:27 [GIT PATCH] scsi updates for 2.6.12-rc2 James Bottomley
2005-04-15 10:36 ` Pavel Machek
2005-04-15 11:25   ` Pavel Machek
2005-04-15 14:08     ` James Bottomley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox