From: greg@kroah.com (Greg KH)
To: torvalds@osdl.org, akpm@osdl.org
Cc: linux-kernel@vger.kernel.org, sensors@Stimpy.netroedge.com
Subject: [BK PATCH] Driver Core patches for 2.6.9-rc1
Date: Thu, 19 May 2005 06:25:12 +0000 [thread overview]
Message-ID: <20040825223503.GA27072@kroah.com> (raw)
Hi,
Here are some driver core patches for 2.6.9-rc1. They fix a few minor
error paths, and shrink down the kref code enough to be able to use it
in a kobject. All of the driver patches have been in the patch few -mm
releases.
I've also put 4 minor I2C patches, and two PCI patches as they need to
make it into the mainline tree soon.
Please pull from:
bk://kernel.bkbits.net/gregkh/linux/driver-2.6
thanks,
greg k-h
p.s. I'll send these as patches in response to this email to lkml for
those who want to see them.
CREDITS | 6 +
Documentation/driver-model/bus.txt | 78 ++++++----------------
Documentation/i2c/sysfs-interface | 2
MAINTAINERS | 30 ++++++++
drivers/base/class.c | 9 +-
drivers/char/tty_io.c | 44 +++++++++---
drivers/i2c/busses/i2c-keywest.c | 2
drivers/i2c/chips/asb100.c | 4 -
drivers/i2c/chips/it87.c | 4 -
drivers/i2c/chips/lm78.c | 4 -
drivers/i2c/chips/lm85.c | 4 -
drivers/i2c/chips/w83627hf.c | 4 -
drivers/i2c/chips/w83781d.c | 4 -
drivers/pci/pci-driver.c | 7 -
drivers/pci/probe.c | 6 +
drivers/pci/remove.c | 20 +++--
drivers/scsi/sd.c | 117 +++++++++++++++++++--------------
drivers/scsi/sr.c | 14 +--
drivers/usb/core/config.c | 7 +
drivers/usb/core/message.c | 4 -
drivers/usb/core/urb.c | 8 +-
drivers/usb/core/usb.h | 1
drivers/usb/host/ehci-mem.c | 4 -
drivers/usb/serial/usb-serial.c | 130 +++++++++++++++++--------------------
include/linux/device.h | 1
include/linux/kobject.h | 5 +
include/linux/kref.h | 9 --
include/linux/pci.h | 2
lib/Makefile | 7 -
lib/kobject.c | 57 ++++++++++------
lib/kref.c | 29 +++-----
31 files changed, 346 insertions(+), 277 deletions(-)
-----
<thomas.koeller:baslerweb.com>:
o Driver Core: fix minor class reference counting issue on the error path
Dmitry Torokhov:
o kobject: fix kobject_set_name comment
François Romieu:
o pci-driver: function documentation fix
Greg Kroah-Hartman:
o kobject: convert struct kobject use kref
o KREF: make kref_get() return void as it makes sense to do so
o KREF: fix up the current kref users for the changed api
o KREF: shrink the size of struct kref down to just a single atomic_t
Jean Delvare:
o I2C: update kernel credits/maintainers
o I2C: rename in0_ref to cpu0_vid
o I2C: keywest class
John Rose:
o PCI Hotplug: create pci_remove_bus()
Jonathan Corbet:
o Remove struct bus_type->add()
Olaf Hering:
o export legacy pty info via sysfs
Robert Love:
o KOBJECT: add kobject_get_path
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <greg@kroah.com>
To: torvalds@osdl.org, akpm@osdl.org
Cc: linux-kernel@vger.kernel.org, sensors@Stimpy.netroedge.com
Subject: [BK PATCH] Driver Core patches for 2.6.9-rc1
Date: Wed, 25 Aug 2004 15:35:04 -0700 [thread overview]
Message-ID: <20040825223503.GA27072@kroah.com> (raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=unknown-8bit, Size: 2929 bytes --]
Hi,
Here are some driver core patches for 2.6.9-rc1. They fix a few minor
error paths, and shrink down the kref code enough to be able to use it
in a kobject. All of the driver patches have been in the patch few -mm
releases.
I've also put 4 minor I2C patches, and two PCI patches as they need to
make it into the mainline tree soon.
Please pull from:
bk://kernel.bkbits.net/gregkh/linux/driver-2.6
thanks,
greg k-h
p.s. I'll send these as patches in response to this email to lkml for
those who want to see them.
CREDITS | 6 +
Documentation/driver-model/bus.txt | 78 ++++++----------------
Documentation/i2c/sysfs-interface | 2
MAINTAINERS | 30 ++++++++
drivers/base/class.c | 9 +-
drivers/char/tty_io.c | 44 +++++++++---
drivers/i2c/busses/i2c-keywest.c | 2
drivers/i2c/chips/asb100.c | 4 -
drivers/i2c/chips/it87.c | 4 -
drivers/i2c/chips/lm78.c | 4 -
drivers/i2c/chips/lm85.c | 4 -
drivers/i2c/chips/w83627hf.c | 4 -
drivers/i2c/chips/w83781d.c | 4 -
drivers/pci/pci-driver.c | 7 -
drivers/pci/probe.c | 6 +
drivers/pci/remove.c | 20 +++--
drivers/scsi/sd.c | 117 +++++++++++++++++++--------------
drivers/scsi/sr.c | 14 +--
drivers/usb/core/config.c | 7 +
drivers/usb/core/message.c | 4 -
drivers/usb/core/urb.c | 8 +-
drivers/usb/core/usb.h | 1
drivers/usb/host/ehci-mem.c | 4 -
drivers/usb/serial/usb-serial.c | 130 +++++++++++++++++--------------------
include/linux/device.h | 1
include/linux/kobject.h | 5 +
include/linux/kref.h | 9 --
include/linux/pci.h | 2
lib/Makefile | 7 -
lib/kobject.c | 57 ++++++++++------
lib/kref.c | 29 +++-----
31 files changed, 346 insertions(+), 277 deletions(-)
-----
<thomas.koeller:baslerweb.com>:
o Driver Core: fix minor class reference counting issue on the error path
Dmitry Torokhov:
o kobject: fix kobject_set_name comment
François Romieu:
o pci-driver: function documentation fix
Greg Kroah-Hartman:
o kobject: convert struct kobject use kref
o KREF: make kref_get() return void as it makes sense to do so
o KREF: fix up the current kref users for the changed api
o KREF: shrink the size of struct kref down to just a single atomic_t
Jean Delvare:
o I2C: update kernel credits/maintainers
o I2C: rename in0_ref to cpu0_vid
o I2C: keywest class
John Rose:
o PCI Hotplug: create pci_remove_bus()
Jonathan Corbet:
o Remove struct bus_type->add()
Olaf Hering:
o export legacy pty info via sysfs
Robert Love:
o KOBJECT: add kobject_get_path
next reply other threads:[~2005-05-19 6:25 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-08-25 22:35 Greg KH [this message]
2005-05-19 6:25 ` [BK PATCH] Driver Core patches for 2.6.9-rc1 Greg KH
2004-08-25 22:36 ` [PATCH] " Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-25 22:36 ` Greg KH
2004-08-26 2:04 ` Benjamin Herrenschmidt
2004-08-26 4:10 ` Greg KH
2005-05-19 6:25 ` Greg KH
2004-08-26 12:26 ` Jean Delvare
2005-05-19 6:25 ` Jean Delvare
2004-08-26 23:33 ` Benjamin Herrenschmidt
2005-05-19 6:25 ` Benjamin Herrenschmidt
2004-08-27 10:16 ` Jean Delvare
2005-05-19 6:25 ` Jean Delvare
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=20040825223503.GA27072@kroah.com \
--to=greg@kroah.com \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sensors@Stimpy.netroedge.com \
--cc=torvalds@osdl.org \
/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.