You are here

Linux 2.6.0-test9

AlbLinux's picture

Vazhdon seria e versioneve të test për kernel 2.6. Sapo u lëshua versioni 2.6.0-test9 i kernel të linux.
Ndryshimet nga versioni 2.6.0-test8 janë si në vazhdim:

ChangeSet2003/10/26 19:16:23-08:00, torvalds @ home.osdl.org [diffview]

Add a sticky "PF_DEAD" task flag to keep track of dead processes.

Use this to simplify 'finish_task_switch', but perhaps more
importantly we can use this to track down why some processes
seem to sometimes not die properly even after having been
marked as ZOMBIE. The "task->state" flags are too fluid to
allow that well.

ChangeSet2003/10/26 14:27:04-08:00, tausq @ debian.org [diffview]

[PATCH] fix __div64_32 to do division properly

This fixes the generic __div64_32() to correctly handle divisions by
large 32-bit values (as used by nanosleep() and friends, for example).

It's a simple bit-at-a-time implementation with a reduction of the high
32-bits handled manually. Architectures that can do 64/32-bit divisions
in hardware should implement their own more efficient versions.

ChangeSet2003/10/26 09:23:40-08:00, ysato @ users.sourceforge.jp [diffview]

[PATCH] fix h8/300 support

- add 'sched_clock'
- delete smplock.h

ChangeSet2003/10/26 09:17:34-08:00, ak @ muc.de [diffview]

[PATCH] Essential x86-64 updates

The most important part is that it makes x86-64 compile again.
Without that 2.6 users won't be very happy.

It also works around a bug that allowed every user program to reboot the
system on B stepping K8.

Also update to match some recent i386 fixes.

Full ChangeLog:
- Add acpi_pic_set_level_irq to make ACPI compile again
- Work around compat mode K8 bug in IRET exception handling
- Increase exception stack. The old 1k stack was too easy
to overflow (from Jim Paradis, changed by me)
- Replace safe_smp_processor_id with cpuid (needed for above)
- When there is only one node always enable fake_node mode
- Merge with i386 (NTP gettimeofday monoticity fix, irq nr_vectors change)
- Fix compile problem for UP kernels in time/cpufreq
- Set all nodes online at bootup
- Define node_to_cpumask correctly

ChangeSet2003/10/26 09:11:40-08:00, stelian @ popies.net [diffview]

[PATCH] meye: documentation

This documents the existence of a forth 'motioneye' camera plugged into
the USB bus, of course unsupported by the meye driver.

ChangeSet2003/10/26 09:11:20-08:00, stelian @ popies.net [diffview]

[PATCH] sonypi: fix Zoom/Thumbphrase button events

This corrects the Zoom and Thumbphrase button events.

ChangeSet2003/10/26 09:11:03-08:00, Andries.Brouwer @ cwi.nl [diffview]

[PATCH] Relax FATFS validity tests

The first FAT entry should have the media byte (0xf0,0xf8,...,0xff)
extended with all 1 bits in the first FAT entry.

Checking this is a good idea, it prevents us from mounting garbage
as FAT - there is no good magic for FAT.

Unfortunately, Windows does not enforce this, and 2.4 doesn't either.
It turns out that there are filesystems around (two reports so far) that
have a zero first FAT entry, and work under Windows and 2.4 but fail to
mount under 2.6.

So, this weakens the test.

ChangeSet2003/10/26 09:10:52-08:00, Andries.Brouwer @ cwi.nl [diffview]

[PATCH] atkbd: 0xfa is ACK

The 0xfa code can be a key scancode or it can be a protocol scancode.

Only few keyboards use it as a key scancode, and if we always interpret
it as a protocol scancode then these rare keyboards will have a dead
key. If we interpret it as a key scancode then we have a dead keyboard
in case it was protocol.

Clearly it is safer to prefer to interpret it as a protocol scancode.

This moves the test for ACK and NAK up, so that they are always seen as
protocol.

This is just a minimal patch. What I did in 1.1.54 was to keep track of
commands sent with a flag reply_expected, so that 0xfa could be taken as
ACK when a reply is expected and as key scancode otherwise. That is the
better solution, but requires larger surgery.