Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbfedbb9 authored by Jeff Garzik's avatar Jeff Garzik
Browse files

Merge branch 'master'

parents 7b038692 e95a9ec1
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -457,6 +457,12 @@ ChangeLog


Note, a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
Note, a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.


2.1.26:
	- Implement support for sector sizes above 512 bytes (up to the maximum
	  supported by NTFS which is 4096 bytes).
	- Enhance support for NTFS volumes which were supported by Windows but
	  not by Linux due to invalid attribute list attribute flags.
	- A few minor updates and bug fixes.
2.1.25:
2.1.25:
	- Write support is now extended with write(2) being able to both
	- Write support is now extended with write(2) being able to both
	  overwrite existing file data and to extend files.  Also, if a write
	  overwrite existing file data and to extend files.  Also, if a write
+9 −0
Original line number Original line Diff line number Diff line
@@ -92,6 +92,15 @@ NodeList format is a comma-separated list of decimal numbers and ranges,
a range being two hyphen-separated decimal numbers, the smallest and
a range being two hyphen-separated decimal numbers, the smallest and
largest node numbers in the range.  For example, mpol=bind:0-3,5,7,9-15
largest node numbers in the range.  For example, mpol=bind:0-3,5,7,9-15


Note that trying to mount a tmpfs with an mpol option will fail if the
running kernel does not support NUMA; and will fail if its nodelist
specifies a node >= MAX_NUMNODES.  If your system relies on that tmpfs
being mounted, but from time to time runs a kernel built without NUMA
capability (perhaps a safe recovery kernel), or configured to support
fewer nodes, then it is advisable to omit the mpol option from automatic
mount options.  It can be added later, when the tmpfs is already mounted
on MountPoint, by 'mount -o remount,mpol=Policy:NodeList MountPoint'.



To specify the initial root directory you can use the following mount
To specify the initial root directory you can use the following mount
options:
options:
+4 −0
Original line number Original line Diff line number Diff line
@@ -52,6 +52,10 @@ APICs
		 apicmaintimer. Useful when your PIT timer is totally
		 apicmaintimer. Useful when your PIT timer is totally
		 broken.
		 broken.


   disable_8254_timer / enable_8254_timer
		 Enable interrupt 0 timer routing over the 8254 in addition to over
	         the IO-APIC. The kernel tries to set a sensible default.

Early Console
Early Console


   syntax: earlyprintk=vga
   syntax: earlyprintk=vga
+1 −1
Original line number Original line Diff line number Diff line
VERSION = 2
VERSION = 2
PATCHLEVEL = 6
PATCHLEVEL = 6
SUBLEVEL = 16
SUBLEVEL = 16
EXTRAVERSION =-rc4
EXTRAVERSION =-rc5
NAME=Sliding Snow Leopard
NAME=Sliding Snow Leopard


# *DOCUMENTATION*
# *DOCUMENTATION*
+12 −2
Original line number Original line Diff line number Diff line
@@ -274,8 +274,18 @@ static void gpio_irq_handler(unsigned irq, struct irqdesc *desc, struct pt_regs
		gpio = &irq_desc[pin];
		gpio = &irq_desc[pin];


		while (isr) {
		while (isr) {
			if (isr & 1)
			if (isr & 1) {
				if (unlikely(gpio->disable_depth)) {
					/*
					 * The core ARM interrupt handler lazily disables IRQs so
					 * another IRQ must be generated before it actually gets
					 * here to be disabled on the GPIO controller.
					 */
					gpio_irq_mask(pin);
				}
				else
					gpio->handle(pin, gpio, regs);
					gpio->handle(pin, gpio, regs);
			}
			pin++;
			pin++;
			gpio++;
			gpio++;
			isr >>= 1;
			isr >>= 1;
Loading