Commit 0401cc9d authored by Len Brown's avatar Len Brown

Merge intel.com:/home/lenb/bk/linux-2.6.8

into intel.com:/home/lenb/src/linux-acpi-test-2.6.8
parents ba9912ec 783707a1
...@@ -221,6 +221,12 @@ AES algorithm contributors: ...@@ -221,6 +221,12 @@ AES algorithm contributors:
CAST5 algorithm contributors: CAST5 algorithm contributors:
Kartikey Mahendra Bhatt (original developers unknown, FSF copyright). Kartikey Mahendra Bhatt (original developers unknown, FSF copyright).
TEA/XTEA algorithm contributors:
Aaron Grothe
Khazad algorithm contributors:
Aaron Grothe
Generic scatterwalk code by Adam J. Richter <adam@yggdrasil.com> Generic scatterwalk code by Adam J. Richter <adam@yggdrasil.com>
Please send any credits updates or corrections to: Please send any credits updates or corrections to:
......
...@@ -19,23 +19,18 @@ fmask=### -- The permission mask for files. ...@@ -19,23 +19,18 @@ fmask=### -- The permission mask for files.
codepage=### -- Sets the codepage number for converting to shortname codepage=### -- Sets the codepage number for converting to shortname
characters on FAT filesystem. characters on FAT filesystem.
By default, FAT_DEFAULT_CODEPAGE setting is used.
NOTE: If this option was not specified, the file name
may not be read/written rightly, also filesystem is
mounted as read-only.
iocharset=name -- Character set to use for converting between the iocharset=name -- Character set to use for converting between the
encoding is used for user visible filename and 16 bit encoding is used for user visible filename and 16 bit
Unicode characters. Long filenames are stored on disk Unicode characters. Long filenames are stored on disk
in Unicode format, but Unix for the most part doesn't in Unicode format, but Unix for the most part doesn't
know how to deal with Unicode. know how to deal with Unicode.
By default, FAT_DEFAULT_IOCHARSET setting is used.
There is also an option of doing UTF8 translations There is also an option of doing UTF8 translations
with the utf8 option. with the utf8 option.
NOTE: If this option was not specified, the file name
may not be read/written rightly, also filesystem is
mounted as read-only.
NOTE: "iocharset=utf8" is not recommended. If unsure, NOTE: "iocharset=utf8" is not recommended. If unsure,
you should consider the following option instead. you should consider the following option instead.
......
...@@ -5182,7 +5182,7 @@ struct _snd_pcm_runtime { ...@@ -5182,7 +5182,7 @@ struct _snd_pcm_runtime {
The callback is much more complicated than the text-file The callback is much more complicated than the text-file
version. You need to use a low-level i/o functions such as version. You need to use a low-level i/o functions such as
<function>copy_from/to_user()</function> to transfer the <function>copy_from/to_user()</function> to transfer the
data. Also, you have to keep tracking the file position, too. data.
<informalexample> <informalexample>
<programlisting> <programlisting>
...@@ -5190,14 +5190,15 @@ struct _snd_pcm_runtime { ...@@ -5190,14 +5190,15 @@ struct _snd_pcm_runtime {
static long my_file_io_read(snd_info_entry_t *entry, static long my_file_io_read(snd_info_entry_t *entry,
void *file_private_data, void *file_private_data,
struct file *file, struct file *file,
char *buf, long count) char *buf,
unsigned long count,
unsigned long pos)
{ {
long size = count; long size = count;
if (file->f_pos + size > local_max_size) if (pos + size > local_max_size)
size = local_max_size - file->f_pos; size = local_max_size - pos;
if (copy_to_user(buf, local_data + file->f_pos, size)) if (copy_to_user(buf, local_data + pos, size))
return -EFAULT; return -EFAULT;
file->f_pos += size;
return size; return size;
} }
]]> ]]>
......
VERSION = 2 VERSION = 2
PATCHLEVEL = 6 PATCHLEVEL = 6
SUBLEVEL = 8 SUBLEVEL = 8
EXTRAVERSION =-rc3 EXTRAVERSION =-rc4
NAME=Zonked Quokka NAME=Zonked Quokka
# *DOCUMENTATION* # *DOCUMENTATION*
......
...@@ -422,7 +422,6 @@ CONFIG_VLAN_8021Q=m ...@@ -422,7 +422,6 @@ CONFIG_VLAN_8021Q=m
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -7,10 +7,10 @@ LDFLAGS_bootp :=-p --no-undefined -X \ ...@@ -7,10 +7,10 @@ LDFLAGS_bootp :=-p --no-undefined -X \
--defsym params_phys=$(PARAMS_PHYS) -T --defsym params_phys=$(PARAMS_PHYS) -T
AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\" AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\"
targets := bootp bootp.lds init.o kernel.o initrd.o targets := bootp init.o kernel.o initrd.o
# Note that bootp.lds picks up kernel.o and initrd.o # Note that bootp.lds picks up kernel.o and initrd.o
$(obj)/bootp: $(addprefix $(obj)/,bootp.lds init.o kernel.o initrd.o) FORCE $(obj)/bootp: $(src)/bootp.lds $(addprefix $(obj)/,init.o kernel.o initrd.o) FORCE
$(call if_changed,ld) $(call if_changed,ld)
@: @:
......
...@@ -101,7 +101,7 @@ $(obj)/piggy.o: $(obj)/piggy.gz FORCE ...@@ -101,7 +101,7 @@ $(obj)/piggy.o: $(obj)/piggy.gz FORCE
CFLAGS_font.o := -Dstatic= CFLAGS_font.o := -Dstatic=
$(obj)/font.o: $(FONTC) $(obj)/font.o: $(FONTC)
$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in Makefile arch/arm/boot/Makefile .config $(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config
@sed "$(SEDFLAGS)" < $< > $@ @sed "$(SEDFLAGS)" < $< > $@
$(obj)/misc.o: $(obj)/misc.c include/asm/arch/uncompress.h lib/inflate.c $(obj)/misc.o: $(obj)/misc.c include/asm/arch/uncompress.h lib/inflate.c
......
...@@ -160,7 +160,6 @@ CONFIG_INET=y ...@@ -160,7 +160,6 @@ CONFIG_INET=y
# CONFIG_LLC is not set # CONFIG_LLC is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -218,7 +218,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -218,7 +218,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -354,7 +354,6 @@ CONFIG_INET=y ...@@ -354,7 +354,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -350,7 +350,6 @@ CONFIG_INET=y ...@@ -350,7 +350,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -265,7 +265,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -265,7 +265,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -332,7 +332,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -332,7 +332,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -204,7 +204,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -204,7 +204,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -296,7 +296,6 @@ CONFIG_IP6_NF_TARGET_MARK=y ...@@ -296,7 +296,6 @@ CONFIG_IP6_NF_TARGET_MARK=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -153,7 +153,6 @@ CONFIG_INET=y ...@@ -153,7 +153,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -162,7 +162,6 @@ CONFIG_INET=y ...@@ -162,7 +162,6 @@ CONFIG_INET=y
# CONFIG_LLC is not set # CONFIG_LLC is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# CONFIG_CPU_IS_SLOW is not set # CONFIG_CPU_IS_SLOW is not set
......
...@@ -222,7 +222,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -222,7 +222,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -314,7 +314,6 @@ CONFIG_IP_PNP_DHCP=y ...@@ -314,7 +314,6 @@ CONFIG_IP_PNP_DHCP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -203,7 +203,6 @@ CONFIG_ATM=y ...@@ -203,7 +203,6 @@ CONFIG_ATM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -267,7 +267,6 @@ CONFIG_UNIX=y ...@@ -267,7 +267,6 @@ CONFIG_UNIX=y
# CONFIG_ECONET_AUNUDP is not set # CONFIG_ECONET_AUNUDP is not set
# CONFIG_ECONET_NATIVE is not set # CONFIG_ECONET_NATIVE is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -245,7 +245,6 @@ CONFIG_INET=y ...@@ -245,7 +245,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -258,7 +258,6 @@ CONFIG_INET=y ...@@ -258,7 +258,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -311,7 +311,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -311,7 +311,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -292,7 +292,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -292,7 +292,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -311,7 +311,6 @@ CONFIG_INET=y ...@@ -311,7 +311,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -281,7 +281,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -281,7 +281,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -200,7 +200,6 @@ CONFIG_INET=y ...@@ -200,7 +200,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -299,7 +299,6 @@ CONFIG_INET_ECN=y ...@@ -299,7 +299,6 @@ CONFIG_INET_ECN=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -299,7 +299,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -299,7 +299,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -297,7 +297,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -297,7 +297,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -457,7 +457,6 @@ CONFIG_ECONET=m ...@@ -457,7 +457,6 @@ CONFIG_ECONET=m
CONFIG_ECONET_AUNUDP=y CONFIG_ECONET_AUNUDP=y
CONFIG_ECONET_NATIVE=y CONFIG_ECONET_NATIVE=y
CONFIG_WAN_ROUTER=m CONFIG_WAN_ROUTER=m
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -314,7 +314,6 @@ CONFIG_IP_MULTICAST=y ...@@ -314,7 +314,6 @@ CONFIG_IP_MULTICAST=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -307,7 +307,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -307,7 +307,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -316,7 +316,6 @@ CONFIG_IP_PNP_RARP=y ...@@ -316,7 +316,6 @@ CONFIG_IP_PNP_RARP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -315,7 +315,6 @@ CONFIG_IP_PNP_RARP=y ...@@ -315,7 +315,6 @@ CONFIG_IP_PNP_RARP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -312,7 +312,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -312,7 +312,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -276,7 +276,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -276,7 +276,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -299,7 +299,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -299,7 +299,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -275,7 +275,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -275,7 +275,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -179,7 +179,6 @@ CONFIG_IP_MULTICAST=y ...@@ -179,7 +179,6 @@ CONFIG_IP_MULTICAST=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -292,7 +292,6 @@ CONFIG_INET=y ...@@ -292,7 +292,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -281,7 +281,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -281,7 +281,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -281,7 +281,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -281,7 +281,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -282,7 +282,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -282,7 +282,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -281,7 +281,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -281,7 +281,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -256,7 +256,6 @@ CONFIG_SYN_COOKIES=y ...@@ -256,7 +256,6 @@ CONFIG_SYN_COOKIES=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -198,7 +198,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -198,7 +198,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -275,7 +275,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -275,7 +275,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -270,7 +270,6 @@ CONFIG_INET=y ...@@ -270,7 +270,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -230,7 +230,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -230,7 +230,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -294,7 +294,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -294,7 +294,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -327,7 +327,6 @@ CONFIG_INET=y ...@@ -327,7 +327,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -310,7 +310,6 @@ CONFIG_INET=y ...@@ -310,7 +310,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -351,7 +351,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -351,7 +351,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -302,7 +302,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -302,7 +302,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -197,7 +197,6 @@ CONFIG_IP_PNP_BOOTP=y ...@@ -197,7 +197,6 @@ CONFIG_IP_PNP_BOOTP=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -230,7 +230,6 @@ CONFIG_INET=y ...@@ -230,7 +230,6 @@ CONFIG_INET=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -323,7 +323,6 @@ CONFIG_NETFILTER=y ...@@ -323,7 +323,6 @@ CONFIG_NETFILTER=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -171,7 +171,6 @@ CONFIG_NET=y ...@@ -171,7 +171,6 @@ CONFIG_NET=y
# CONFIG_LAPB is not set # CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -1116,8 +1116,12 @@ void init_irq_proc (void) ...@@ -1116,8 +1116,12 @@ void init_irq_proc (void)
#ifdef CONFIG_4KSTACKS #ifdef CONFIG_4KSTACKS
static char softirq_stack[NR_CPUS * THREAD_SIZE] __attribute__((__aligned__(THREAD_SIZE), __section__(".bss.page_aligned"))); /*
static char hardirq_stack[NR_CPUS * THREAD_SIZE] __attribute__((__aligned__(THREAD_SIZE), __section__(".bss.page_aligned"))); * These should really be __section__(".bss.page_aligned") as well, but
* gcc's 3.0 and earlier don't handle that correctly.
*/
static char softirq_stack[NR_CPUS * THREAD_SIZE] __attribute__((__aligned__(THREAD_SIZE)));
static char hardirq_stack[NR_CPUS * THREAD_SIZE] __attribute__((__aligned__(THREAD_SIZE)));
/* /*
* allocate per-cpu stacks for hardirq and for softirq processing * allocate per-cpu stacks for hardirq and for softirq processing
......
...@@ -384,7 +384,6 @@ CONFIG_SYN_COOKIES=y ...@@ -384,7 +384,6 @@ CONFIG_SYN_COOKIES=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -228,7 +228,6 @@ CONFIG_IP_MULTICAST=y ...@@ -228,7 +228,6 @@ CONFIG_IP_MULTICAST=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -392,7 +392,6 @@ CONFIG_IPV6=m ...@@ -392,7 +392,6 @@ CONFIG_IPV6=m
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -365,7 +365,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -365,7 +365,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -402,7 +402,6 @@ CONFIG_IP_NF_ARPTABLES=y ...@@ -402,7 +402,6 @@ CONFIG_IP_NF_ARPTABLES=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -63,6 +63,7 @@ check_pgt_cache (void) ...@@ -63,6 +63,7 @@ check_pgt_cache (void)
low = pgt_cache_water[0]; low = pgt_cache_water[0];
high = pgt_cache_water[1]; high = pgt_cache_water[1];
preempt_disable();
if (pgtable_cache_size > (u64) high) { if (pgtable_cache_size > (u64) high) {
do { do {
if (pgd_quicklist) if (pgd_quicklist)
...@@ -71,6 +72,7 @@ check_pgt_cache (void) ...@@ -71,6 +72,7 @@ check_pgt_cache (void)
free_page((unsigned long)pmd_alloc_one_fast(0, 0)); free_page((unsigned long)pmd_alloc_one_fast(0, 0));
} while (pgtable_cache_size > (u64) low); } while (pgtable_cache_size > (u64) low);
} }
preempt_enable();
} }
void void
......
...@@ -112,7 +112,6 @@ CONFIG_INET=y ...@@ -112,7 +112,6 @@ CONFIG_INET=y
# CONFIG_LLC is not set # CONFIG_LLC is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -235,7 +235,6 @@ CONFIG_IPV6_SCTP__=y ...@@ -235,7 +235,6 @@ CONFIG_IPV6_SCTP__=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -316,7 +316,6 @@ CONFIG_XFRM=y ...@@ -316,7 +316,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -268,7 +268,6 @@ CONFIG_XFRM=y ...@@ -268,7 +268,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -278,7 +278,6 @@ CONFIG_XFRM=y ...@@ -278,7 +278,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -266,7 +266,6 @@ CONFIG_XFRM=y ...@@ -266,7 +266,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -288,7 +288,6 @@ CONFIG_XFRM=y ...@@ -288,7 +288,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -286,7 +286,6 @@ CONFIG_XFRM=y ...@@ -286,7 +286,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -368,7 +368,6 @@ CONFIG_XFRM=y ...@@ -368,7 +368,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -278,7 +278,6 @@ CONFIG_XFRM=y ...@@ -278,7 +278,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -246,7 +246,6 @@ CONFIG_XFRM=y ...@@ -246,7 +246,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -272,7 +272,6 @@ CONFIG_XFRM=y ...@@ -272,7 +272,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -272,7 +272,6 @@ CONFIG_XFRM=y ...@@ -272,7 +272,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -253,7 +253,6 @@ CONFIG_XFRM=y ...@@ -253,7 +253,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -247,7 +247,6 @@ CONFIG_XFRM=y ...@@ -247,7 +247,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -414,7 +414,6 @@ CONFIG_SCTP_HMAC_MD5=y ...@@ -414,7 +414,6 @@ CONFIG_SCTP_HMAC_MD5=y
CONFIG_NET_DIVERT=y CONFIG_NET_DIVERT=y
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -321,7 +321,6 @@ CONFIG_XFRM=y ...@@ -321,7 +321,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -317,7 +317,6 @@ CONFIG_XFRM=y ...@@ -317,7 +317,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -323,7 +323,6 @@ CONFIG_XFRM=y ...@@ -323,7 +323,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -273,7 +273,6 @@ CONFIG_XFRM=y ...@@ -273,7 +273,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -245,7 +245,6 @@ CONFIG_XFRM=y ...@@ -245,7 +245,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -361,7 +361,6 @@ CONFIG_XFRM=y ...@@ -361,7 +361,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -259,7 +259,6 @@ CONFIG_XFRM=y ...@@ -259,7 +259,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -268,7 +268,6 @@ CONFIG_XFRM=y ...@@ -268,7 +268,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -255,7 +255,6 @@ CONFIG_XFRM=y ...@@ -255,7 +255,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -268,7 +268,6 @@ CONFIG_XFRM=y ...@@ -268,7 +268,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -246,7 +246,6 @@ CONFIG_XFRM=y ...@@ -246,7 +246,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -245,7 +245,6 @@ CONFIG_XFRM=y ...@@ -245,7 +245,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -249,7 +249,6 @@ CONFIG_XFRM=y ...@@ -249,7 +249,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -237,7 +237,6 @@ CONFIG_XFRM=y ...@@ -237,7 +237,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -268,7 +268,6 @@ CONFIG_XFRM=y ...@@ -268,7 +268,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -268,7 +268,6 @@ CONFIG_XFRM=y ...@@ -268,7 +268,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
...@@ -354,7 +354,6 @@ CONFIG_XFRM=y ...@@ -354,7 +354,6 @@ CONFIG_XFRM=y
# CONFIG_NET_DIVERT is not set # CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set # CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set # CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set # CONFIG_NET_HW_FLOWCONTROL is not set
# #
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment