All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: 2.4.23-pre7-pac1
@ 2003-10-13 18:48 O.Sezer
  0 siblings, 0 replies; 8+ messages in thread
From: O.Sezer @ 2003-10-13 18:48 UTC (permalink / raw)
  To: linux-kernel

If I listen to the evil whispers and say "m" to CONFIG_IP_SCTP,
then my build logs are spammed by messages like the following:

gcc -D__KERNEL__ -I/usr/src/linux-2.4.23-pre7-pac1/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=pentium3   -nostdinc -iwithprefix include -DKBUILD_BASENAME=md  -DEXPORT_SYMTAB -c md.c
In file included from /usr/src/linux-2.4.23-pre7-pac1/include/net/sctp/ulpevent.h:51,
		from /usr/src/linux-2.4.23-pre7-pac1/include/net/sctp/structs.h:93,
		from /usr/src/linux-2.4.23-pre7-pac1/include/net/sock.h:53,
		from /usr/src/linux-2.4.23-pre7-pac1/include/net/ip.h:39,
		from /usr/src/linux-2.4.23-pre7-pac1/include/net/checksum.h:31,
		from /usr/src/linux-2.4.23-pre7-pac1/include/linux/raid/md.h:35,
		from md.c:33:
/usr/src/linux-2.4.23-pre7-pac1/include/net/sctp/compat.h:74: warning: static declaration for `generic_fls' follows non-static

Since there are no changes to stcp code in -pac, this should also
be a problem for mainline.

Regards,
Özkan Sezer


^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: 2.4.23-pre7-pac1
@ 2003-10-13 18:41 O.Sezer
  0 siblings, 0 replies; 8+ messages in thread
From: O.Sezer @ 2003-10-13 18:41 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 124 bytes --]

drivers/char/rocket.c is missing the tty->count  -->
atomic_read(&tty->count) change. Patch attached.

Regards;
Özkan Sezer

[-- Attachment #2: rocket.c-tty-fix.patch --]
[-- Type: text/plain, Size: 428 bytes --]

--- ./drivers/char/rocket.c.orig	2003-10-13 12:58:33.000000000 +0300
+++ ./drivers/char/rocket.c	2003-10-13 20:10:05.000000000 +0300
@@ -1052,7 +1052,7 @@
 		restore_flags(flags);
 		return;
 	}
-	if ((tty->count == 1) && (info->count != 1)) {
+	if ((atomic_read(&tty->count) == 1) && (info->count != 1)) {
 		/*
 		 * Uh, oh.  tty->count is 1, which means that the tty
 		 * structure will be freed.  Info->count should always

^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: 2.4.23-pre7-pac1
@ 2003-10-13 12:28 O.Sezer
  2003-10-14 11:53 ` 2.4.23-pre7-pac1 Bernhard Rosenkraenzer
  0 siblings, 1 reply; 8+ messages in thread
From: O.Sezer @ 2003-10-13 12:28 UTC (permalink / raw)
  To: linux-kernel

Hello;

What is the point of this hunk?

--- linux-2.4.23-pre7/drivers/char/Config.in	2003-10-12 14:32:33.000000000 +0200
+++ linux-2.4.23-pre7-pac1/drivers/char/Config.in	2003-10-12 15:31:44.000000000 +0200
[...]
@@ -349,6 +352,7 @@
       define_bool CONFIG_DRM_NEW y
       source drivers/char/drm/Config.in
    fi
+   bool '  ATI IGP chipset support' CONFIG_AGP_ATI
 fi
 endmenu

OTOH, CONFIG_DRM_GAMMA, CONFIG_DRM_S3 and CONFIG_DRM_VIA are not
present, while they were available in 22-ac4. This is the first time
I'm messing with 23-preX and it seems like somethings have changed?

Regards,
Özkan Sezer


^ permalink raw reply	[flat|nested] 8+ messages in thread
* 2.4.23-pre7-pac1
@ 2003-10-12 22:18 Bernhard Rosenkraenzer
  2003-10-12 23:01 ` 2.4.23-pre7-pac1 Marcos D. Marado Torres
  0 siblings, 1 reply; 8+ messages in thread
From: Bernhard Rosenkraenzer @ 2003-10-12 22:18 UTC (permalink / raw)
  To: linux-kernel

$SUBJECT, AKA the "just returning from vacation release", is at

ftp://ftp.kernel.org/pub/linux/kernel/people/bero/2.4/2.4.23/

Not many changes other than syncing with what happened while I was gone:

- Sync with 2.4.23-pre7
- Make sure everything compiles
- Update DRI (good news for SiS graphics users: If you use this
  along with XFree86 CVS, you'll have hw accelerated 3D)

LLaP
bero

-- 
Ark Linux - Linux for the masses
http://www.arklinux.org/

Redistribution and processing of this message is subject to
http://www.arklinux.org/terms.php

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

end of thread, other threads:[~2003-10-14 12:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-13 18:48 2.4.23-pre7-pac1 O.Sezer
  -- strict thread matches above, loose matches on Subject: below --
2003-10-13 18:41 2.4.23-pre7-pac1 O.Sezer
2003-10-13 12:28 2.4.23-pre7-pac1 O.Sezer
2003-10-14 11:53 ` 2.4.23-pre7-pac1 Bernhard Rosenkraenzer
2003-10-12 22:18 2.4.23-pre7-pac1 Bernhard Rosenkraenzer
2003-10-12 23:01 ` 2.4.23-pre7-pac1 Marcos D. Marado Torres
2003-10-13  8:27   ` 2.4.23-pre7-pac1 Zwane Mwaikambo
2003-10-13 10:38     ` 2.4.23-pre7-pac1 Marcos D. Marado Torres

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.