linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: Linux 2.4.21pre5-ac2
@ 2003-03-07 13:40 Margit Schubert-While
  2003-03-08 23:37 ` Horst von Brand
  0 siblings, 1 reply; 7+ messages in thread
From: Margit Schubert-While @ 2003-03-07 13:40 UTC (permalink / raw)
  To: linux-kernel

	Patches for :
		Radeon 9000 support
		Delete chipset display in drm_agpsupport.h
		This has been done in 2.5 and DRI/DRM mainline
		Alan, please apply.

	Margit

--- linux-2.4.20/drivers/video/radeon.h 2002-11-29 00:53:15.000000000 +0100
+++ linux-2.4.20mw0/drivers/video/radeon.h      2003-03-07 
10:41:19.000000000 +0100
@@ -15,6 +15,8 @@
  #define PCI_DEVICE_ID_RADEON_PM                0x4c52
  #define PCI_DEVICE_ID_RADEON_QL                0x514c
  #define PCI_DEVICE_ID_RADEON_QW                0x5157
+#define PCI_DEVICE_ID_RADEON_IG                0x4966
+#define PCI_DEVICE_ID_RADEON_LF                0x4c66

  #define RADEON_REGSIZE                 0x4000

--- linux-2.4.20/drivers/video/radeonfb.c       2003-03-07 
13:47:00.000000000 +0100
+++ linux-2.4.20mw0/drivers/video/radeonfb.c    2003-03-07 
10:42:18.000000000 +0100
@@ -101,6 +101,8 @@
         RADEON_LW,      /* Radeon Mobility M7 */
         RADEON_LY,      /* Radeon Mobility M6 */
         RADEON_LZ,      /* Radeon Mobility M6 */
+       RADEON_IG,      /* Radeon RV250 (9000) */
+       RADEON_LF,      /* Radeon Mobility 9000 */
         RADEON_PM       /* Radeon Mobility P/M */
  };

@@ -128,6 +130,8 @@
         { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LW, PCI_ANY_ID, 
PCI_ANY_ID, 0, 0, RADEON_LW},
         { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LY, PCI_ANY_ID, 
PCI_ANY_ID, 0, 0, RADEON_LY},
         { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LZ, PCI_ANY_ID, 
PCI_ANY_ID, 0, 0, RADEON_LZ},
+       { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_IG, PCI_ANY_ID, 
PCI_ANY_ID, 0, 0, RADEON_IG},
+       { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LF, PCI_ANY_ID, 
PCI_ANY_ID, 0, 0, RADEON_LF},
         { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_PM, PCI_ANY_ID, 
PCI_ANY_ID, 0, 0, RADEON_PM},
         { 0, }
  };
@@ -861,6 +865,15 @@
                 case PCI_DEVICE_ID_RADEON_PM:
                         strcpy(rinfo->name, "Radeon P/M ");
                         rinfo->hasCRTC2 = 1;
+                       break;
+               case PCI_DEVICE_ID_RADEON_IG:
+                       strcpy(rinfo->name, "Radeon 9000 IG ");
+                       rinfo->hasCRTC2 = 1;
+                       break;
+               case PCI_DEVICE_ID_RADEON_LF:
+                       strcpy(rinfo->name, "Radeon R250 LF ");
+                       rinfo->hasCRTC2 = 1;
+                       break;
                 default:
                         return -ENODEV;
         }
--- linux-2.4.20/drivers/char/drm/drm_agpsupport.h      2003-03-07 
13:47:00.000000000 +0100
+++ linux-2.4.20mw0/drivers/char/drm/drm_agpsupport.h   2003-03-07 
10:51:49.000000000 +0100
@@ -259,65 +259,13 @@
                         return NULL;
                 }
                 head->memory = NULL;
-               switch (head->agp_info.chipset) {
-               case INTEL_GENERIC:     head->chipset = "Intel";         break;
-               case INTEL_LX:          head->chipset = "Intel 440LX";   break;
-               case INTEL_BX:          head->chipset = "Intel 440BX";   break;
-               case INTEL_GX:          head->chipset = "Intel 440GX";   break;
-               case INTEL_I810:        head->chipset = "Intel i810";    break;
-               case INTEL_I815:        head->chipset = "Intel i815";    break;
-               case INTEL_I820:        head->chipset = "Intel i820";    break;
-               case INTEL_I840:        head->chipset = "Intel i840";    break;
-               case INTEL_I845:        head->chipset = "Intel i845";    break;
-               case INTEL_I850:        head->chipset = "Intel i850";    break;
-
-               case VIA_GENERIC:       head->chipset = "VIA";           break;
-               case VIA_VP3:           head->chipset = "VIA VP3";       break;
-               case VIA_MVP3:          head->chipset = "VIA MVP3";      break;
-               case VIA_MVP4:          head->chipset = "VIA MVP4";      break;
-               case VIA_APOLLO_KX133:  head->chipset = "VIA Apollo KX133";
-                       break;
-               case VIA_APOLLO_KT133:  head->chipset = "VIA Apollo KT133";
-                       break;
-               case VIA_APOLLO_KT400:  head->chipset = "VIA Apollo KT400";
-                       break;
-               case VIA_APOLLO_PRO:    head->chipset = "VIA Apollo Pro";
-                       break;
-
-               case SIS_GENERIC:       head->chipset = "SiS";           break;
-               case AMD_GENERIC:       head->chipset = "AMD";           break;
-               case AMD_IRONGATE:      head->chipset = "AMD Irongate";  break;
-               case AMD_8151:          head->chipset = "AMD 8151";      break;
-               case ALI_GENERIC:       head->chipset = "ALi";           break;
-               case ALI_M1541:         head->chipset = "ALi M1541";     break;
-
-               case ALI_M1621:         head->chipset = "ALi M1621";     break;
-               case ALI_M1631:         head->chipset = "ALi M1631";     break;
-               case ALI_M1632:         head->chipset = "ALi M1632";     break;
-               case ALI_M1641:         head->chipset = "ALi M1641";     break;
-               case ALI_M1644:         head->chipset = "ALi M1644";     break;
-               case ALI_M1647:         head->chipset = "ALi M1647";     break;
-               case ALI_M1651:         head->chipset = "ALi M1651";     break;
-
-               case SVWRKS_HE:         head->chipset = "Serverworks HE";
-                       break;
-               case SVWRKS_LE:         head->chipset = "Serverworks LE";
-                       break;
-               case SVWRKS_GENERIC:    head->chipset = "Serverworks Generic";
-                       break;
-
-               case HP_ZX1:            head->chipset = "HP ZX1";        break;
-
-               default:                head->chipset = "Unknown";       break;
-               }

                 head->cant_use_aperture = head->agp_info.cant_use_aperture;
                 head->page_mask = head->agp_info.page_mask;

-               DRM_INFO("AGP %d.%d on %s @ 0x%08lx %ZuMB\n",
+               DRM_INFO("AGP %d.%d Aperture @ 0x%08lx %ZuMB\n",
                          head->agp_info.version.major,
                          head->agp_info.version.minor,
-                        head->chipset,
                          head->agp_info.aper_base,
                          head->agp_info.aper_size);
         }


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

* Re: Linux 2.4.21pre5-ac2
  2003-03-07 13:40 Linux 2.4.21pre5-ac2 Margit Schubert-While
@ 2003-03-08 23:37 ` Horst von Brand
  0 siblings, 0 replies; 7+ messages in thread
From: Horst von Brand @ 2003-03-08 23:37 UTC (permalink / raw)
  To: Margit Schubert-While; +Cc: linux-kernel

margitsw@t-online.de (Margit Schubert-While) said:

Stupid question time:

> --- linux-2.4.20/drivers/video/radeon.h 2002-11-29 00:53:15.000000000 +0100
> +++ linux-2.4.20mw0/drivers/video/radeon.h      2003-03-07 

[...]

> @@ -861,6 +865,15 @@
>                  case PCI_DEVICE_ID_RADEON_PM:
>                          strcpy(rinfo->name, "Radeon P/M ");

Is this string modified later, or would it be enough to use a char *name
and go:
                           rinfo->name = "Radeon P/M";

(It looks like this would mean changes all over PCI, so...)
-- 
Dr. Horst H. von Brand                   User #22616 counter.li.org
Departamento de Informatica                     Fono: +56 32 654431
Universidad Tecnica Federico Santa Maria              +56 32 654239
Casilla 110-V, Valparaiso, Chile                Fax:  +56 32 797513

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

* Re: Linux 2.4.21pre5-ac2
@ 2003-03-07 15:21 Margit Schubert-While
  0 siblings, 0 replies; 7+ messages in thread
From: Margit Schubert-While @ 2003-03-07 15:21 UTC (permalink / raw)
  To: linux-kernel

	Missed this one in first Email.

make[1]: Circular /disk03/2421pre5/linux-2.4.20/include/asm/smplock.h <- 
/disk03/2421pre5/linux-2.4.20/include/linux/interrupt.h dependency dropped.
make[1]: Circular 
/disk03/2421pre5/linux-2.4.20/include/linux/netfilter_ipv4/ip_conntrack_helper.h 
<- 
/disk03/2421pre5/linux-2.4.20/include/linux/netfilter_ipv4/ip_conntrack.h 
dependency dropped.

	Margit


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

* Re: Linux 2.4.21pre5-ac2
@ 2003-03-07 10:13 Margit Schubert-While
  0 siblings, 0 replies; 7+ messages in thread
From: Margit Schubert-While @ 2003-03-07 10:13 UTC (permalink / raw)
  To: linux-kernel

	Warnings from make.

	Margit

  -c -o pci-pc.o pci-pc.c
{standard input}: Assembler messages:
{standard input}:980: Warning: indirect lcall without `*'
{standard input}:1056: Warning: indirect lcall without `*'
{standard input}:1138: Warning: indirect lcall without `*'
{standard input}:1214: Warning: indirect lcall without `*'
{standard input}:1230: Warning: indirect lcall without `*'
{standard input}:1240: Warning: indirect lcall without `*'
{standard input}:1306: Warning: indirect lcall without `*'
{standard input}:1321: Warning: indirect lcall without `*'
{standard input}:1332: Warning: indirect lcall without `*'
{standard input}:1801: Warning: indirect lcall without `*'
{standard input}:1876: Warning: indirect lcall without `*'

  -o apm.o apm.c
{standard input}: Assembler messages:
{standard input}:244: Warning: indirect lcall without `*'
{standard input}:336: Warning: indirect lcall without `*'

as -o bbootsect.o bbootsect.s
bbootsect.s: Assembler messages:
bbootsect.s:256: Warning: indirect lcall without `*'

as -o bsetup.o bsetup.s
bsetup.s: Assembler messages:
bsetup.s:1748: Warning: value 0x37ffffff truncated to 0x37ffffff
bsetup.s:2141: Warning: indirect lcall without `*'

=isdn_ppp  -c -o isdn_ppp.o isdn_ppp.c
isdn_ppp.c: In function `isdn_ppp_free':
isdn_ppp.c:111: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
isdn_ppp.c:131: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
isdn_ppp.c: In function `isdn_ppp_wakeup_daemon':
isdn_ppp.c:232: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
isdn_ppp.c: In function `isdn_ppp_closewait':
isdn_ppp.c:251: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
isdn_ppp.c: In function `isdn_ppp_release':
isdn_ppp.c:347: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
isdn_ppp.c:357: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
isdn_ppp.c: In function `isdn_ppp_push_higher':
isdn_ppp.c:1029: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
isdn_ppp.c:1055: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
isdn_ppp.c: In function `isdn_ppp_receive_ccp':
isdn_ppp.c:2494: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
isdn_ppp.c:2504: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
isdn_ppp.c: In function `isdn_ppp_send_ccp':
isdn_ppp.c:2668: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
isdn_ppp.c:2691: warning: concatenation of string literals with 
__FUNCTION__ is deprecated

=cpia  -DEXPORT_SYMTAB -c cpia.c
cpia.c: In function `proc_cpia_create':
cpia.c:1334: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c: In function `set_vw_size':
cpia.c:1539: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c: In function `parse_picture':
cpia.c:1912: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c:1918: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c:1924: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c:1930: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c:1949: warning: concatenation of string literals with __FUNCTION__ is 
deprecated
cpia.c:1956: warning: concatenation of string literals with __FUNCTION__ is 
deprecated

=cpia_pp  -c -o cpia_pp.o cpia_pp.c
cpia_pp.c: In function `cpia_pp_register':
cpia_pp.c:486: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
cpia_pp.c:492: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
cpia_pp.c:501: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
cpia_pp.c:514: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
cpia_pp.c: In function `cpia_pp_init':
cpia_pp.c:606: warning: concatenation of string literals with __FUNCTION__ 
is deprecated
cpia_pp.c: In function `init_module':
cpia_pp.c:630: warning: concatenation of string literals with __FUNCTION__ 
is deprecated

=ip_nat_helper  -c -o ip_nat_helper.o ip_nat_helper.c
ip_nat_helper.c: In function `ip_nat_resize_packet':
ip_nat_helper.c:87: warning: unused variable `data'
ip_nat_helper.c: In function `ip_nat_helper_register':
ip_nat_helper.c:498: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
ip_nat_helper.c: In function `ip_nat_helper_unregister':
ip_nat_helper.c:582: warning: concatenation of string literals with 
__FUNCTION__ is deprecated

drv  -c -o radeon_drv.o radeon_drv.c
In file included from drmP.h:75,
                  from radeon_drv.c:32:
drm_os_linux.h:16:2: warning: #warning the author of this code needs to 
read up on list_entry
In file included from radeon_drv.c:35:
radeon_drv.h:846:2: warning: #warning PCI posting bug
In file included from drm_dma.h:33,
                  from radeon_drv.c:42:
drm_os_linux.h:16:2: warning: #warning the author of this code needs to 
read up on list_entry


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

* Re: Linux 2.4.21pre5-ac2
  2003-03-06 21:40 ` Petr Sebor
@ 2003-03-06 22:52   ` Alan Cox
  0 siblings, 0 replies; 7+ messages in thread
From: Alan Cox @ 2003-03-06 22:52 UTC (permalink / raw)
  To: Petr Sebor; +Cc: Alan Cox, Linux Kernel Mailing List

On Thu, 2003-03-06 at 21:40, Petr Sebor wrote:
> hdb: IOMEGA ZIP 100 ATAPI Floppy, ATAPI FLOPPY drive
> Partition check:
>  hdb:end_request: I/O error, dev 03:40 (hdb), sector 0
> end_request: I/O error, dev 03:40 (hdb), sector 2
> end_request: I/O error, dev 03:40 (hdb), sector 4
> end_request: I/O error, dev 03:40 (hdb), sector 6
> end_request: I/O error, dev 03:40 (hdb), sector 0
> end_request: I/O error, dev 03:40 (hdb), sector 2
> end_request: I/O error, dev 03:40 (hdb), sector 4
> end_request: I/O error, dev 03:40 (hdb), sector 6
>  unable to read partition table
> 
> Started to happen on two different machines and didn't
> happen with pre4-ac7.

Is there a disk in at the time ?



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

* Re: Linux 2.4.21pre5-ac2
  2003-03-06 19:15 Alan Cox
@ 2003-03-06 21:40 ` Petr Sebor
  2003-03-06 22:52   ` Alan Cox
  0 siblings, 1 reply; 7+ messages in thread
From: Petr Sebor @ 2003-03-06 21:40 UTC (permalink / raw)
  To: Alan Cox; +Cc: Linux Kernel Mailing List

Hello,

I am now getting the following errors with both
2.4.21-pre5-ac1 and 2.4.21-pre5-ac2:

hdb: IOMEGA ZIP 100 ATAPI Floppy, ATAPI FLOPPY drive
Partition check:
 hdb:end_request: I/O error, dev 03:40 (hdb), sector 0
end_request: I/O error, dev 03:40 (hdb), sector 2
end_request: I/O error, dev 03:40 (hdb), sector 4
end_request: I/O error, dev 03:40 (hdb), sector 6
end_request: I/O error, dev 03:40 (hdb), sector 0
end_request: I/O error, dev 03:40 (hdb), sector 2
end_request: I/O error, dev 03:40 (hdb), sector 4
end_request: I/O error, dev 03:40 (hdb), sector 6
 unable to read partition table

Started to happen on two different machines and didn't
happen with pre4-ac7.

Regards,
Petr



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

* Linux 2.4.21pre5-ac2
@ 2003-03-06 19:15 Alan Cox
  2003-03-06 21:40 ` Petr Sebor
  0 siblings, 1 reply; 7+ messages in thread
From: Alan Cox @ 2003-03-06 19:15 UTC (permalink / raw)
  To: linux-kernel

This has significant IDE changes. A lot of the reset handling
has been rewritten and fixup for various locking, logic and PCI
handling bugs. The ALi driver has acquired support for the
newest chips, a couple of bug fixes and ATA133, thanks to ALi

Please treat -ac2 with a lot of care. It should be fine but it
does play deep in the IDE code.

Linux 2.4.21pre5-ac2
o	Add PCI idents for ALi 1563 to dmfe		(Clear Zhang)
o	Busproc operations now error if unsupported	(me)
o	Make busproc handler return a status
o	Fix IDE reset locking. We don't want an IRQ	(me)
	poking around during a reset while the iface
	state is undefined
o	Remove half baked request clean up code 	(me)
	from ide_do_reset. We require the caller
	cleans up first
o	Add ide_abort functions to abort due to 	(me)
	host not target triggered events
o	Remove a pile of surplus hwgroup checks		(me)
o	Fix the reset ioctl paths to use 		(me)
	ide_abort
o	Fix PCI posting on ide resets			(me)
o	Call the dma_check routine when trying to	(me)
	enable DMA via hdparm
o	Add per driver abort handlers and use them	(me)
o	Forward port 8.0 ALi driver updates from	(me)
	Clear Zhang at ALi

Linux 2.4.21pre5-ac1
o	Merge with 2.4.21pre5
o	Do the final hatchet work on drive->id		(me)
	| IDE drive->id is now always valid so people
	| can no longer get that one wrong. 
o	DRIVER(drive) in IDE != NULL always now		(me)
	| A dummy driver removes a ton of conditions 
	| and a load of bugs
o	Move modem awareness into ac97_codec.c		(me)
	| Fixes CXT66 support I hope
o	Minimal cmedia codec setup/bug stuff		(me)
	| Note these codecs dont yet support AC3 and also
	| don't support volume control. May fix some sis7012
	| laptop setups with luck.
o	Fix mkdep bug causing devlist.h problem with	(Pavel Roskin)
	some versions of make
o	Fix missing mtd Makefile entry			(Adrian Bunk)
o	APIC initialisation fix				(Mikael Pettersson)
o	CCISS update					(Stephen Cameron)
o	USB transport size handling fix			(Alan Stern)
o	Add AGP entry for the VIA EPIA			(John Eckerdal)
o	Add Laneed idents to pegasus usb ethernet	(Go Taniguchi)
o	Add HID workaround for OKI USB keyboard		(Go Taniguchi)
o	Add idents for MTT_TE MN128 USB ethernet	(Go Taniguchi)
o	Add USB quirks for another memorystick		(Go Taniguchi)
o	Some minor typo fixes to keep 2.4/2.5 easier	(Steven Cole)
	to diff
o	Fix several operator and precdence problems	(Norbert Kiesel)
o	cciss error handling unregister fix		(Herbert Xu)
o	Kerneldoc for user access functions		(Jon Foster)
o	Further ALi IDE fixes				(Ivan Kokshaysky)
o	Improved 440GX bios workarounds			(Arjan van de Ven)
	| Thanks to the guys at Intel for hints on this
o	AMD74xx cable detect fixes			(Zoltan Hidvegi,
							 Vojtech Pavlik)
o	io/irq in mpu401 must not be initdata		(Daniel Ritz)
o	Handle shared irq on pcmcia qlogicfas		(Komuro)

Linux 2.4.21pre4-ac7
o	Next chunk of DRM merge towards 4.3 codebase
o	Fix ide-scsi deadlock on reset with SMP		(me)
o	Add some sun arrays to the scsi quirks list	(Joel Buckley)
	| They want multilun scanning always
o	Fix skbuff abuse in atm lec			(Chas Williams)
o	Update the ips driver 				(Jack Hammer)
o	Fix intelfb compile on SMP			(Arjan van de Ven)
o	One shot elevator contention fixing cache 	(Stephen Tweedie)
o	Support swapoff from initrd			(Stephen Tweedie)
o	Add another transparent bridge quirk		(Arjan van de Ven)
o	ieee1394 sleep fixes				(Arjan van de Ven)
o	Use 0xff for cpu target				(Arjan van de Ven)
o	kmap leak fix for nfs symlink			(Arjan van de Ven)
o	Fix incorrect kernel/user address handling	(me)
	crash in swapoff (root only)
o	kiovec accelerator				(??)
o	Export symbol needed by ipmi			(Andreas Haumer)
o	Add another 3c59x pci identifier		(Daniel Kopko)
o	Alpha build fix					(Elliot Lee)
o	Add new chips to e100				(Matt Wilson)

Linux 2.4.21pre4-ac6
o	Update IPMI to v18				(Corey Minyard)
o	More intel PIIX identifiers			(Bill Nottingham)
o	Update e100 for new identifiers			(Jeff Garzik)
o	Update Athlon SSE enabler			(Dave Jones)
o	Update auerswald USB isdn driver		(Wolfgang)
o	USB storage updates				(Matthew Dharm)
o	Add tripp idents to the pl2303 usb serial	(John Moses)
o	Add a new ftdi_sio ident			(Philipp Gühring)
o	Remove unused ohci driver field			(Johannes Erdfelt)
o	Fix EHCI abuse of SLAB_KERNEL in interrupt	(Oliver Neukum)
o	Fix dhcp on kaweth				(Oliver Neukum)
o	Fix some wrong idents in the pegasus driver	(Petko Manolov)
o	Fix ipaq name in usbnet				(Carsten)
o	USB macro cleanup				(Joern Engel)
o	Remove proc files in uhci that get stuck
o	Remove wrong comment in ohci/uhci drivers	(Johannes Erdfelt)
o	Roland SC8820 USB midi support			(Andrew Wood)
o	Fix USB naming bug				(Johannes Edrfelt)
o	Add ontrack to the hid ignore list		(Greg Kroah Hartmann)
o	Add tangtop to the hid blacklist		(Greg Kroah Hartmann)
o	USB scanner updates				(Henning Meier-Geinitz)
o	Fix an oom handling bug in sis drm
o	DRM updates for Radeon
	| Flightgear now takes > 2hrs to hang on my R9000
o	Fix various abusers of GFP_KERNEL in USB	(Arjan van de Ven)
o	Fix aic7xxx updates eaten by exclude file	(Sergio Visinoni)
o	Use check_gcc on crusoe				(Stelian Pop)
o	Update sonypi and meye drivers			(Stelian Pop)
o	Make input layer accept jogdial as valid	(Stelian Pop)
o	Intel i8xx framebuffer driver			(David Dawes)

Linux 2.4.21pre4-ac5
o	Fix the AMD ide bug() on boot up
o	Pass device to outbsync so that we can whack	(Ben Herrenschmidt)
	the bridge on weird platforms
o	Default sl82c05 second channel to PIO0		(Ben Herrenschmidt)
o	EHCI speed up fixes				(David Brownell)
o	Assorted cpia fixes				(Duncan Haldane)
o	SSE enable for later Athlon			(Daniel Egger)
o	3com 3c990 driver 				(David Dillow)
o	Fix config syntax error in DRM config		(Andrzej Krzysztofowicz)
o	Update pci-skeleton to fix pad bug in example	(me)
	| Noted by Roger Luethi
o	Supress popping when audio starts on via82cxxx	(Jorg Schuler)
o	Fix reiserfs direct I/O crash			(Oleg Drokin)
o	Allow cramfs initrd				(Christoph Hellwig)
o	Fix error path on dscc wan driver		(me)
o	Fix sign mishandling in epca driver		(me)
o	Fix sign mishandling in mwave driver		(Oleg Drokin)
o	Fix sign mishandling in mpt fusion		(Oleg Drokin)
o	Fix sign mishandling in aacraid			(Oleg Drokin)
o	Fix sign mishandling in tun			(Oleg Drokin, me)

Linux 2.4.21pre4-ac4
o	Attach a fake id struct to old/unprobed drives	(me)
	| Fixes a ton of special casing some of which was
	| buggy.
o	Fix incorrect sign handling in setup-pci noted	(me)
	by Oleg Drokin
o	Fix bogon error returns from init_chipset noted	(me)
	by Oleg Drokin
	| Fixes hpt366 crash on 66Mhz bus
o	Fix mishandling of flash/disk combinations	(me)
o	Fix handling of /proc/ide/*/identify with	(me)
	no driver loaded (band aid for now)
o	Fix IDE hang on rmmod and on poweroff		(me)
o	Fix IDE printk <6> bug				(Henning Schmiedehausen)
o	Radeon no longer needs AGPgart			(James McClain)
o	REPORTING-BUGS typo fix				(Faik Uygur)
o	ndelay() for PPC				(Ben Herrenschmidt)
o	PPC ioflush handling				(Ben Herrenschmidt)
o	PowerMac IDE updates				(Ben Herrenschmidt)
o	8169 missing includes for Alpha build		(Geoffrey Lee)
o	Fix sisfb build on boxes with no MTRR		(Geoffrey Lee)
o	Fix cpqfc build on Alpha			(Geoffrey Lee)
o	Fix forte build on Alpha			(Geoffrey Lee)
o	Add eth_io_copy_and_sum for Alpha		(Geoffrey Lee)
o	Fix bogus semicolon in 8253xtty			(Oleg Drokin)
o	Fix incorrect if in megaraid driver		(Oleg Drokin)
o	Fix sign warning in radio_cadet driver found	(me)
	by Oleg Drokin

Linux 2.4.21pre4-ac3
o	ALi FIFO setup channel fix			(Al Viro)
	| This needs careful testing. Treat -ac3 with a lot of care
	| on ALi platforms and report how it goes
o	Fix the dma waiting overflow			(Ben Herrenschmidt)
o	Fix ATAPI devices on VIA8235			(Vojtech Pavlik)
o	Add ndelay for Alpha				(Ivan kokshaysky)
o	Give ndelay sensible argument names		(Geert Uytterhoeven)
o	Fix pcnet32 big endian filtering		(Marcus Meissner)
o	Fix ordering problem with PCI radeon causing	(Chris Ison)
	DRI hangs
o	Fix C3 gcc compiler flags for newer gcc		(Jeff Garzik)
o	Replace nvidia and amd IDE drivers with new	(Vojtech Pavlik)
	driver
o	Fix missing ; in aicasm_gram.y			(Thibaut VARENE)
o	NCR5380 trivial fix				(Geert Uytterhoeven)
o	Make constants in maxiradio static		(Arnd Bergmann)
o	Fix typos of 'available'			(Alfredo Sanjuan)
o	Fix wrong checks in bttv ioctl code	(Alexandre Pereira Nunes)
o	Fix i2c_ack cris extra ";"
o	Fix JSIOCSBTNMAP extra ";"
o	Fix VIDIOCGTUNER on w9966
o	Fix amd8111e_read_regs
o	Fix smctr_load_node_addr
o	Fix sym53c8xxx extra ";"
o	Fix sym53c8xxx_2 extra ";"
o	Fix cs46xx download area clear
o	Fix hysdn bootup error handling
o	Fix mtd mount error checks
o	Fix dpt_i2o reset error paths
o	Fix a jffs error path handler
o	Fix es1371 error path on register
o	Fix sscape operator precedence
o	Fix copy counting in vrc5477 audio
o	Fix cdu31a oops with data cd			(Mauricio Martinez)
o	Fix ide taskfile if ";" errors			(Oleg Drokin)
o	Add 3com 3c460 to kaweth			(Oliver Neukum)
o	Kaweth length/dhcp fix				(Oliver Neukum)
o	ISD-200 requires IDE				(Olaf Hering)

Linux 2.4.21pre4-ac2
o	Turn on use of ide_execute_command everywhere	(Ross Biro, me)
o	First cut at settings locking for IDE		(me)
o	Add driver for CS5530 Kahlua audio		(me)
o	Fix wrong semicolons in system.h		(Mikael Pettersson)
o	Support root=nbd				(Ben LaHaise)
o	x86 byte order swapping optimisations		(Andi Kleen)
o	PMAC ide updates				(Ben Herrenschmidt)
o	Fix mishandling of nfsroot port= option		(Eric Lammerts)
o	Fix ALi audio on systems with > 2Gb RAM		(Ivan Kokshaysky)
o	Enable generic rtc on PPC boxes			(Geert Uytterhoeven)
o	Fix ide build with gcc 3.3 snapshot		(Olaf Hering)
o	Merge EHCI updates (qh state machine fix etc)	(David Brownell)
o	Fix radio-cadet SMP build			(Adrian Bunk)
o	Starfire updates				(Ion Badulescu)
o	Backport seq_file fix to 2.4			(Eric Sandeen)
o	Fix ext3 crash deleting a single non sparse	(Stephen Tweedie)
	file exceeding 1Tb

Linux 2.4.21pre4-ac1
o	Restore the mmap corner case fix		(Raul)
o	Add sendfile64 to 2.4.x				(Christoph Hellwig)
o	NLM garbage collection hang fix			(Daniel Forrest)
o	Enable kernel side pcigart for radeon		(Michael Danzer)
	| Requires recent XFree and ForcePCIMode
o	Don't bash legacy floppy on x86_64 bootup	(Mikael Petersson)
o	Forward sony joygdial input to input layer	(Stelian Pop)
o	TCP session stall fix				(Alexey Kuznetsov)
o	Ian Nelson has moved				(Ian Nelson)
o	Add unplugged iops ready for hotplug IDE support(me)
o	Add an OUTBSYNC iop for the IDE layer		(Ben Herrenschmidt)
o	Finish the ide_execute_command code		(me)
o	Switch ide-cd to ide_execute_command 		(me)
	| Always good to test stuff on read only devices first 8)
o	Fix IDE masking logic error			(Ross Biro)
o	Fix IDE mishandling of IRQ 0 devices		(me)
o	Fix printk levels on promise drivers		(me)
o	Clean up duplicate mmio ops/printk in siimage	(me)
o	Always set interrupt line with VIA northbridge	(me)
	| Should fix apic mode problems with USB/audio/net on VIA boards
o	Add Diamond technology dt0893 codec		(Thomas Davis)
o	Add IBM 'Ruthless' platform string to summit
o	Don't warn about IRQ when enabling a pure	(me)
	legacy mode IDE class device
o	Clean up radio_cadet locking and other bugs	(me)
o	Fix jiffies mishandling in eata drivers		(Tim Schmielau)
o	Quieten confusing DMA disabled messages		(Tomas Szepe)
o	i830 DRM update port over			(Arjan van de Ven)

Linux 2.4.21pre3-ac5
o	Fix erratic oopsing on 2.4.21pre3-ac*		(Hugh Dickins)
o	Fix an incorrect check in raw.c			(Artur Frycze)
o	Fix highmem IDE DMA				(Jens Axboe)
o	Fix the size of the EDD area			(Kevin Lawton)
o	Remove incorrect ACPI blacklist entry		(Pavel Machek)
o	SCSI memory leak fix				(Justin Gibbs)
o	Fix mmap of vmalloc area in kmem giving wrong	(Tony Dziedzic)
	results
o	Fix date in the microcode driver		(Jonah Sherman)
o	Fix incorrect smc9194 handling of skb_padto	(David McCullough)
o	Fix use of old check_regio function in umc8672	(William Stinson)
o	Remove unused variable in sc1200		(Bob Miller)
o	Perform ide_cs unregister in task context	(Paul Mackerras)
	| This doesn't fix all the bugs yet...
o	Fix bugs in the gx power management code	(Hiroshi Miura)
o	Fix the sl82c105 driver for the new IDE code	(Benjamin Herrenschmidt,
							 Russell King)
o	Remove cacheflush debug printk			(me)
o	Fix IDE paths in docs for new layout		(Karl-Heinz Eischer)
o	Generic RTC driver backport			(Geert Uytterhoeven)
o	HDLC driver updates				(Krzysztof Halasa)
o	AMD8111 random number generator support		(Andi Kleen)
o	Fix crashes on e2100 driver			(me)

Linux 2.4.21pre3-ac4
o	Finish verifying PIIX/ICH drivers versus errata	(me)
o	Fix handling of DMA0 MWDMA on early ICH		(me)
o	Fix compile in kernel for Aurora SIO16		(Adrian Bunk)
o	Clean up various Configure.help bits		(Adrian Bunk)
o	Disallow write combining on 450NX		(me)
o	Ensure rev C0 450NX has restreaming off		(me)
o	Don't do IDE DMA on rev B0 450NX or later	(me)
	450NX without BIOS workarounds for the hang
o	Update Configure.help for HPT IDE		(Adrian Bunk)
o	Fix harmless code error in sb_mixer		(Jeff Garzik)
o	Fix ethernet padding on via-rhine		(Roger Luethi)
o	Add ndelay functionality for x86		(me)
	| Based on Ross Biro's code
o	Add ide_execute_command 			(me)
	| Again based on Ross Biro's changed. Not yet used
	| This will be the new correct way to kick off an 
	| IDE command from non IRQ context
o	Matroxfb compile fix for one option combination	(Petr Vandrovec)

Linux 2.4.21pre3-ac3
o	Address comments on wcache value/issuing	(me)
	cache flush requests
o	Update credits entry for Stelian Pop		(Stelian Pop)
o	Backport some sonypi improvements from 2.5	(Kunihiko IMAI)
o	Fix pdcraid/silraid symbol clash		(Arjan van de Ven)
o	Fix ehci build with older gcc			(Greg Kroah-Hartmann)
o	Fix via 8233/5 hang				(me)
o	Fix non SMP cpufreq build			(Eyal Lebidinsky)
o	Fix sbp2 build with some config options		(Eyal Lebidinsky)
o	Fix ATM build bugs				(Francois Romieu)
o	Fix an ipc/sem.c race				(Bernhard Kaindl)
o	Fix toshiba keyboard double release		(Unknown)
o	CPUFreq updaes/fixes				(Dominik Brodowski)
o	Natsemi Geode/Cyrix MediaGX cpufreq support	(Hiroshi Miura,
							 Zwane Mwaikambo)
o	Add frequency table helpers to CPUfreq		(Dominik Brodowski)

Linux 2.4.21pre3-ac2
o	Fix the dumb bug in skb_pad			(Dave Miller)
o	Confirm some sparc bits are wrong and drop them	(Dave Miller)
o	Remove a wrong additional copyright comment	(Dave Miller)
o	Upgrade IPMI driver to v16			(Corey Minyard)
o	Fix 3c523 compile				(Francois Romieu)
o	Handle newer rpm where -ta is rpmbuild not rpm	(me)
o	Driver for Aurora Sio16 PCI adapter series	(Joachim Martillo)
	(SIO8000P, 16000P, and CPCI)
	| Initial merge
o	Backport Hammer 32bit mtrr/nmi changes		(Andi Kleen)
o	Add the fast IRQ path to via 8233/5 audio	(me)

Linux 2.4.21pre3-ac1
+	Handle battery quirk on the Vaio Z600-RE	(Paul Mitcheson)
*	EHCI USB updates				(David Brownell)
+	IDE Raid support for AMI/SI 'Medley' IDE Raid	(Arjan van de Ven)
+	NVIDIA nForce2 IDE PCI identifiers		(Johannes Deisenhofer,
							 Tim Krieglstein)
*	CPU bitmask truncation fix			(Bjorn Helgaas)
o	HP100 cleanup					(Pavel Machek)
o	Fix initial capslock handling on USB keyboard	(Pete Zaitcev)
+	Update dscc4 driver for new wan			(Francois Romieu)
+	Fix boot on Chaintech 4BEA/4BEA-R and		(Alexander Achenbach)
	Gigabyte 9EJL by handing wacky E820 memory
	reporting
o	SysKonnect driver updates			(Mirko Lindner)
o	Fix memory leak in n_hdlc			(Paul Fulghum)
o	Fix missing mtd dependancy			(Herbert Xu)
+	Clean up ide-tape printk stuff			(Pete Zaitcev)
+	IDE tape fixes					(Pete Zaitcev)
o	Fix size reporting of large disks in scsi	(Andries Brouwer)
+	Fix excessive stack usage in NMI handlers	(Mikael Pettersson)
+	Add support for Epson 785EPX USB printer pcmcia	(Khalid Aziz)
*	Quirk handler to sort out IDE compatibility	(Ivan Kokshaysky)
	mishandling
+	Model 1 is valid for PIV in MP table		(Egenera)
+	Ethernet padding fixes for various drivers	(me)
o	Allow trident codec setup to time out		(Ian Soboroff)
	This can happen with non PM codecs
o	Fix broken documentation link			(Henning Meier-Geinitz)
o	Update video4linux docbook			(William Stimson)
o	Correct kmalloc check in dpt_i2o		(Pablo Menichini)
o	Shrink kmap area to required space only		(Manfred Spraul)
o	Fix irq balancing				(Ben LaHaise)
o	CPUfreq updates					(Dominik Brodowski)
o	Fix typo in pmagb fb				(John Bradford)
o	EDD backport					(Matt Domsch)


REMOVED FOR NOW

-	RMAP

REMOVED FOR GOOD

-	LLC 	(See 2.5)
-	VaryIO  (Never accepted mainstream)

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

end of thread, other threads:[~2003-03-08 23:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-03-07 13:40 Linux 2.4.21pre5-ac2 Margit Schubert-While
2003-03-08 23:37 ` Horst von Brand
  -- strict thread matches above, loose matches on Subject: below --
2003-03-07 15:21 Margit Schubert-While
2003-03-07 10:13 Margit Schubert-While
2003-03-06 19:15 Alan Cox
2003-03-06 21:40 ` Petr Sebor
2003-03-06 22:52   ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).