From: Christoph Hellwig <hch@infradead.org>
To: Linus Torvalds <torvalds@transmeta.com>
Cc: Kernel Mailing List <linux-kernel@vger.kernel.org>,
linux-scsi@vger.kernel.org
Subject: Re: Linux v2.5.47
Date: Wed, 13 Nov 2002 00:22:22 +0000 [thread overview]
Message-ID: <20021113002222.B323@infradead.org> (raw)
In-Reply-To: <Pine.LNX.4.44.0211101944030.17742-100000@penguin.transmeta.com>; from torvalds@transmeta.com on Sun, Nov 10, 2002 at 07:46:06PM -0800
On Sun, Nov 10, 2002 at 07:46:06PM -0800, Linus Torvalds wrote:
>
> I still have stuff pending, but this is what's currently merged.
Btw, here's a little headsup for all maintainers of scsi host adapter
drivers. In 2.5.47 the detect and release methods of the Scsi_Host_Template
have become optional. If you had an old pci driver with the following
loop in foo_detcect:
while ((pdev = pci_find_device())) {
[do basic setup]
sdev = scsi_register();
[do more setup]
}
You can convert it easily into a new-style pci driver with the following
probe routine:
[do basic setup]
sdev = scsi_register();
[do more setup]
return scsi_add_host();
Similarly a new routine, scsi_remove_host exist to call at the end
of the remove routine.
next prev parent reply other threads:[~2002-11-13 0:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-11-11 3:46 Linux v2.5.47 Linus Torvalds
2002-11-11 8:10 ` Adrian Bunk
2002-11-11 12:06 ` Allan Duncan
2002-11-11 14:14 ` Linux v2.5.47 (CONFIG_CRYPTO) James Morris
2002-11-11 23:32 ` Linux v2.5.47 Adrian Bunk
2002-11-13 0:22 ` Christoph Hellwig [this message]
2002-11-13 1:03 ` Alan Cox
2002-11-13 0:43 ` Christoph Hellwig
2002-11-13 12:03 ` Michael Still
2002-11-13 12:03 ` Michael Still
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20021113002222.B323@infradead.org \
--to=hch@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.