linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* loopback device + crypto = crash on 2.6.0-test7 ?
@ 2003-10-29  7:09 Soeren Sonnenburg
  2003-11-07 14:01 ` Bill Davidsen
  2003-11-09 13:10 ` Florian Weimer
  0 siblings, 2 replies; 16+ messages in thread
From: Soeren Sonnenburg @ 2003-10-29  7:09 UTC (permalink / raw)
  To: Linux Kernel

Hi.

I wanted to setup a blowfish encrypted file which is then mounted via
loopback. So I did:

losetup -e blowfish /dev/loop0 /file
Password:
mkfs -t ext3 /dev/loop0
mount /dev/loop0 /mnt
<error unknown fs type>
<from here something was seriously broken... could not reboot anymore>

system is:
Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux

(benh rsync tree)

Soeren.


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-10-29  7:09 loopback device + crypto = crash on 2.6.0-test7 ? Soeren Sonnenburg
@ 2003-11-07 14:01 ` Bill Davidsen
  2003-11-09 13:10 ` Florian Weimer
  1 sibling, 0 replies; 16+ messages in thread
From: Bill Davidsen @ 2003-11-07 14:01 UTC (permalink / raw)
  To: Soeren Sonnenburg; +Cc: Linux Kernel

On Wed, 29 Oct 2003, Soeren Sonnenburg wrote:

> I wanted to setup a blowfish encrypted file which is then mounted via
> loopback. So I did:
> 
> losetup -e blowfish /dev/loop0 /file
> Password:
> mkfs -t ext3 /dev/loop0
> mount /dev/loop0 /mnt
> <error unknown fs type>
> <from here something was seriously broken... could not reboot anymore>

Did you pre-create the file? I've been doing something quite similar since
about test6, although I use ext2 and aes I don't suspect that matters. But
I did preallocate the file with dd first. I assume you did that, since you
don't give a size in mkfs, but better to mention it.

> 
> system is:
> Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux
> 
> (benh rsync tree)

I've run both dead stock test releases, -mm, and most recently a mix of
Nick and Con scheduler and io patches.

-- 
bill davidsen <davidsen@tmr.com>
  CTO, TMR Associates, Inc
Doing interesting things with little computers since 1979.


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-09 13:10 ` Florian Weimer
@ 2003-11-09 12:23   ` Soeren Sonnenburg
  2003-11-10 22:41   ` bill davidsen
  1 sibling, 0 replies; 16+ messages in thread
From: Soeren Sonnenburg @ 2003-11-09 12:23 UTC (permalink / raw)
  To: Florian Weimer; +Cc: Linux Kernel

On Sun, 2003-11-09 at 14:10, Florian Weimer wrote:
> Soeren Sonnenburg wrote:
> 
> > losetup -e blowfish /dev/loop0 /file
> > Password:
> > mkfs -t ext3 /dev/loop0
> > mount /dev/loop0 /mnt
> > <error unknown fs type>
> > <from here something was seriously broken... could not reboot anymore>
> 
> I'm seeing something similar, but in my case, mke2fs already crashes.

Yes... it crashes somewhen after writing to the loop device... sometimes
mkfs is enough, sometimes one has to write a bit more...

> > system is:
> > Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux
> 
> Mine ist -test9 on x86.
> 
> Have you found a solution in the meantime?

not me.

Soeren.


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-10-29  7:09 loopback device + crypto = crash on 2.6.0-test7 ? Soeren Sonnenburg
  2003-11-07 14:01 ` Bill Davidsen
@ 2003-11-09 13:10 ` Florian Weimer
  2003-11-09 12:23   ` Soeren Sonnenburg
  2003-11-10 22:41   ` bill davidsen
  1 sibling, 2 replies; 16+ messages in thread
From: Florian Weimer @ 2003-11-09 13:10 UTC (permalink / raw)
  To: Soeren Sonnenburg; +Cc: Linux Kernel

Soeren Sonnenburg wrote:

> losetup -e blowfish /dev/loop0 /file
> Password:
> mkfs -t ext3 /dev/loop0
> mount /dev/loop0 /mnt
> <error unknown fs type>
> <from here something was seriously broken... could not reboot anymore>

I'm seeing something similar, but in my case, mke2fs already crashes.

> system is:
> Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux

Mine ist -test9 on x86.

Have you found a solution in the meantime?

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-09 13:10 ` Florian Weimer
  2003-11-09 12:23   ` Soeren Sonnenburg
@ 2003-11-10 22:41   ` bill davidsen
  2003-11-10 23:27     ` Peter Lieverdink
  1 sibling, 1 reply; 16+ messages in thread
From: bill davidsen @ 2003-11-10 22:41 UTC (permalink / raw)
  To: linux-kernel

In article <20031109131018.GA18342@deneb.enyo.de>,
Florian Weimer  <fw@deneb.enyo.de> wrote:
| Soeren Sonnenburg wrote:
| 
| > losetup -e blowfish /dev/loop0 /file
| > Password:
| > mkfs -t ext3 /dev/loop0
| > mount /dev/loop0 /mnt
| > <error unknown fs type>
| > <from here something was seriously broken... could not reboot anymore>
| 
| I'm seeing something similar, but in my case, mke2fs already crashes.
| 
| > system is:
| > Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux
| 
| Mine ist -test9 on x86.
| 
| Have you found a solution in the meantime?

I have been using aes and not seeing this. I suppose it's unlikely that
there could be an error in the kernel crypto, but I think I'll wait and
try blowfish on a non-critical machine.
-- 
bill davidsen <davidsen@tmr.com>
  CTO, TMR Associates, Inc
Doing interesting things with little computers since 1979.

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-10 22:41   ` bill davidsen
@ 2003-11-10 23:27     ` Peter Lieverdink
  2003-11-10 23:46       ` bill davidsen
                         ` (3 more replies)
  0 siblings, 4 replies; 16+ messages in thread
From: Peter Lieverdink @ 2003-11-10 23:27 UTC (permalink / raw)
  To: linux-kernel

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

At 09:41 11/11/2003, you wrote:
>In article <20031109131018.GA18342@deneb.enyo.de>,
>Florian Weimer  <fw@deneb.enyo.de> wrote:
>| Soeren Sonnenburg wrote:
>|
>| > losetup -e blowfish /dev/loop0 /file
>| > Password:
>| > mkfs -t ext3 /dev/loop0
>| > mount /dev/loop0 /mnt
>| > <error unknown fs type>
>| > <from here something was seriously broken... could not reboot anymore>
>|
>| I'm seeing something similar, but in my case, mke2fs already crashes.
>|
>| > system is:
>| > Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux
>|
>| Mine ist -test9 on x86.
>|
>| Have you found a solution in the meantime?
>
>I have been using aes and not seeing this. I suppose it's unlikely that
>there could be an error in the kernel crypto, but I think I'll wait and
>try blowfish on a non-critical machine.

My solution has been to not use cryptofs, it crashes with whatever 
algorithm I choose :-(

I agree that something is very broken, though. Mind you, I can only 
replicate this problem on one of my machines - the other one I've tried it 
on seems to work fine. Odder still, when I compile a kernel on the machine 
which is fine and ruin said kernel on the machine which is not fine, I 
don't experience the crash.

I've attached a traced session plus the config used, may it be of use to 
someone (please! :-)

- Peter. 

[-- Attachment #2: config-2.6.0-test8_kahlua --]
[-- Type: application/octet-stream, Size: 27272 bytes --]

#
# Automatically generated make config: don't edit
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_STANDALONE=y
CONFIG_BROKEN_ON_SMP=y

#
# General setup
#
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_LOG_BUF_SHIFT=14
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
CONFIG_KMOD=y

#
# Processor type and features
#
CONFIG_X86_PC=y
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
# CONFIG_X86_GENERICARCH is not set
# CONFIG_X86_ES7000 is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
CONFIG_MK7=y
# CONFIG_MK8 is not set
# CONFIG_MELAN is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_USE_3DNOW=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
# CONFIG_SMP is not set
CONFIG_PREEMPT=y
CONFIG_X86_UP_APIC=y
CONFIG_X86_UP_IOAPIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
# CONFIG_X86_MCE_P4THERMAL is not set
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_EDD=y
# CONFIG_NOHIGHMEM is not set
CONFIG_HIGHMEM4G=y
# CONFIG_HIGHMEM64G is not set
CONFIG_HIGHMEM=y
CONFIG_HIGHPTE=y
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
CONFIG_HAVE_DEC_LOCK=y

#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
CONFIG_SOFTWARE_SUSPEND=y
CONFIG_PM_DISK=y
CONFIG_PM_DISK_PARTITION=""

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
CONFIG_ACPI_AC=y
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUS=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y
# CONFIG_ACPI_RELAXED_AML is not set

#
# APM (Advanced Power Management) BIOS Support
#
# CONFIG_APM is not set

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
# CONFIG_CPU_FREQ_PROC_INTF is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
# CONFIG_CPU_FREQ_24_API is not set
CONFIG_CPU_FREQ_TABLE=y

#
# CPUFreq processor drivers
#
# CONFIG_X86_ACPI_CPUFREQ is not set
# CONFIG_X86_POWERNOW_K6 is not set
# CONFIG_X86_POWERNOW_K7 is not set
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_GX_SUSPMOD is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_SPEEDSTEP_ICH is not set
# CONFIG_X86_SPEEDSTEP_SMI is not set
# CONFIG_X86_P4_CLOCKMOD is not set
# CONFIG_X86_LONGRUN is not set
# CONFIG_X86_LONGHAUL is not set

#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
# CONFIG_HOTPLUG is not set

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_AOUT is not set
# CONFIG_BINFMT_MISC is not set

#
# Device Drivers
#

#
# Generic Driver Options
#

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Plug and Play support
#
# CONFIG_PNP is not set

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
CONFIG_BLK_DEV_LOOP=m
CONFIG_BLK_DEV_CRYPTOLOOP=m
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_BLK_DEV_INITRD is not set
# CONFIG_LBD is not set

#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
# CONFIG_IDEDISK_STROKE is not set
CONFIG_BLK_DEV_IDECD=m
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
CONFIG_BLK_DEV_IDESCSI=m
# CONFIG_IDE_TASK_IOCTL is not set
# CONFIG_IDE_TASKFILE_IO is not set

#
# IDE chipset support/bugfixes
#
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDE_TCQ is not set
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
# CONFIG_IDEDMA_PCI_WIP is not set
CONFIG_BLK_DEV_ADMA=y
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
CONFIG_BLK_DEV_PDC202XX_NEW=y
CONFIG_PDC202XX_FORCE=y
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIIMAGE is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
CONFIG_BLK_DEV_VIA82CXXX=y
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_DMA_NONPCI is not set
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
CONFIG_SCSI=m
# CONFIG_SCSI_PROC_FS is not set

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=m
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=m
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=m

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_REPORT_LUNS=y
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_MEGARAID is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support (EXPERIMENTAL)
#
CONFIG_IEEE1394=y

#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
CONFIG_IEEE1394_OUI_DB=y

#
# Device Drivers
#
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m

#
# Protocol Drivers
#
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_SBP2=m
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
# CONFIG_IEEE1394_CMP is not set

#
# I2O device support
#
# CONFIG_I2O is not set

#
# Networking support
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_INET_ECN=y
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set

#
# IP: Virtual Server Configuration
#
# CONFIG_IP_VS is not set
CONFIG_IPV6=m
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set

#
# IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=y
# CONFIG_IP_NF_FTP is not set
# CONFIG_IP_NF_IRC is not set
# CONFIG_IP_NF_TFTP is not set
# CONFIG_IP_NF_AMANDA is not set
# CONFIG_IP_NF_QUEUE is not set
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_LIMIT=y
CONFIG_IP_NF_MATCH_IPRANGE=y
CONFIG_IP_NF_MATCH_MAC=y
# CONFIG_IP_NF_MATCH_PKTTYPE is not set
# CONFIG_IP_NF_MATCH_MARK is not set
# CONFIG_IP_NF_MATCH_MULTIPORT is not set
# CONFIG_IP_NF_MATCH_TOS is not set
CONFIG_IP_NF_MATCH_RECENT=y
# CONFIG_IP_NF_MATCH_ECN is not set
# CONFIG_IP_NF_MATCH_DSCP is not set
# CONFIG_IP_NF_MATCH_AH_ESP is not set
# CONFIG_IP_NF_MATCH_LENGTH is not set
# CONFIG_IP_NF_MATCH_TTL is not set
# CONFIG_IP_NF_MATCH_TCPMSS is not set
# CONFIG_IP_NF_MATCH_HELPER is not set
CONFIG_IP_NF_MATCH_STATE=y
CONFIG_IP_NF_MATCH_CONNTRACK=y
# CONFIG_IP_NF_MATCH_OWNER is not set
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
# CONFIG_IP_NF_TARGET_REDIRECT is not set
# CONFIG_IP_NF_TARGET_NETMAP is not set
# CONFIG_IP_NF_TARGET_SAME is not set
# CONFIG_IP_NF_NAT_LOCAL is not set
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
# CONFIG_IP_NF_MANGLE is not set
CONFIG_IP_NF_TARGET_LOG=y
# CONFIG_IP_NF_TARGET_ULOG is not set
# CONFIG_IP_NF_TARGET_TCPMSS is not set
# CONFIG_IP_NF_ARPTABLES is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
CONFIG_IPV6_SCTP__=y
# CONFIG_IP_SCTP is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
CONFIG_NETDEVICES=y

#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
CONFIG_TUN=y

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=y
# CONFIG_TYPHOON is not set

#
# Tulip family network device support
#
# CONFIG_NET_TULIP is not set
# CONFIG_HP100 is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_B44 is not set
# CONFIG_DGRS is not set
# CONFIG_EEPRO100 is not set
# CONFIG_E100 is not set
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
CONFIG_8139TOO_TUNE_TWISTER=y
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SK98LIN is not set
# CONFIG_TIGON3 is not set

#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set

#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set

#
# IrDA (infrared) support
#
# CONFIG_IRDA is not set

#
# Bluetooth support
#
# CONFIG_BT is not set

#
# ISDN subsystem
#
# CONFIG_ISDN_BOOL is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=m
# CONFIG_INPUT_EVBUG is not set

#
# Input I/O drivers
#
# CONFIG_GAMEPORT is not set
CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
# CONFIG_MOUSE_PS2_SYNAPTICS is not set
CONFIG_MOUSE_SERIAL=m
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDDLER is not set
# CONFIG_INPUT_JOYDUMP is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=m
CONFIG_INPUT_UINPUT=m

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
# CONFIG_SERIAL_8250_ACPI is not set
CONFIG_SERIAL_8250_NR_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256

#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCF=m

#
# I2C Hardware Bus support
#
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD8111=m
CONFIG_I2C_ELEKTOR=m
CONFIG_I2C_I801=m
# CONFIG_I2C_I810 is not set
CONFIG_I2C_NFORCE2=m
CONFIG_I2C_PIIX4=m
CONFIG_I2C_PROSAVAGE=m
# CONFIG_I2C_SAVAGE4 is not set
CONFIG_SCx200_ACB=m
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
CONFIG_I2C_SIS96X=m
CONFIG_I2C_VIA=m
CONFIG_I2C_VIAPRO=m
# CONFIG_I2C_VOODOO3 is not set

#
# I2C Hardware Sensors Chip support
#
CONFIG_I2C_SENSOR=m
CONFIG_SENSORS_ADM1021=m
CONFIG_SENSORS_EEPROM=m
CONFIG_SENSORS_IT87=m
CONFIG_SENSORS_LM75=m
CONFIG_SENSORS_LM78=m
CONFIG_SENSORS_LM85=m
CONFIG_SENSORS_VIA686A=m
CONFIG_SENSORS_W83781D=m

#
# Mice
#
CONFIG_BUSMOUSE=m
# CONFIG_QIC02_TAPE is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_ATI is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
# CONFIG_AGP_INTEL is not set
# CONFIG_AGP_NVIDIA is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
CONFIG_AGP_VIA=y
CONFIG_DRM=y
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_GAMMA is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
CONFIG_DRM_MGA=m
# CONFIG_DRM_SIS is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HANGCHECK_TIMER=m

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
CONFIG_FB=y
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_VESA is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_RIVA is not set
CONFIG_FB_MATROX=y
# CONFIG_FB_MATROX_MILLENIUM is not set
# CONFIG_FB_MATROX_MYSTIQUE is not set
CONFIG_FB_MATROX_G450=y
CONFIG_FB_MATROX_G100=y
CONFIG_FB_MATROX_I2C=m
CONFIG_FB_MATROX_MAVEN=m
# CONFIG_FB_MATROX_MULTIHEAD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_MDA_CONSOLE is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_PCI_CONSOLE=y
CONFIG_FONTS=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_FONT_6x11 is not set
# CONFIG_FONT_PEARL_8x8 is not set
# CONFIG_FONT_ACORN_8x8 is not set
# CONFIG_FONT_MINI_4x6 is not set
# CONFIG_FONT_SUN8x16 is not set
# CONFIG_FONT_SUN12x22 is not set

#
# Logo configuration
#
CONFIG_LOGO=y
CONFIG_LOGO_LINUX_MONO=y
CONFIG_LOGO_LINUX_VGA16=y
CONFIG_LOGO_LINUX_CLUT224=y

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_SEQUENCER_OSS=y
# CONFIG_SND_RTCTIMER is not set
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set

#
# PCI devices
#
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
CONFIG_SND_EMU10K1=m
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_SONICVIBES is not set
CONFIG_SND_VIA82XX=m
# CONFIG_SND_VX222 is not set

#
# ALSA USB devices
#
# CONFIG_SND_USB_AUDIO is not set

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
CONFIG_USB_BANDWIDTH=y
# CONFIG_USB_DYNAMIC_MINORS is not set

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=y

#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_DATAFAB=y
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set

#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=y
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_XPAD is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_SCANNER is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_HPUSBSCSI is not set

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set

#
# Video4Linux support is needed for USB Multimedia device support
#

#
# USB Network adaptors
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set

#
# USB port drivers
#

#
# USB Serial Converter support
#
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_BELKIN=m
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OMNINET is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_TIGL is not set
# CONFIG_USB_AUERSWALD is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_BRLVGER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_GADGET is not set

#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
CONFIG_EXT3_FS=y
# CONFIG_EXT3_FS_XATTR is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_REISERFS_FS=m
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
# CONFIG_XFS_RT is not set
# CONFIG_XFS_QUOTA is not set
# CONFIG_XFS_POSIX_ACL is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=m
CONFIG_UDF_FS=m

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
# CONFIG_NTFS_RW is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
# CONFIG_DEVFS_FS is not set
CONFIG_DEVPTS_FS=y
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
CONFIG_HFS_FS=m
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_EXPORTFS is not set
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_INTERMEZZO_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
# CONFIG_NEC98_PARTITION is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_EFI_PARTITION is not set
CONFIG_SMB_NLS=y
CONFIG_NLS=y

#
# Native Language Support
#
CONFIG_NLS_DEFAULT="iso8859-15"
CONFIG_NLS_CODEPAGE_437=m
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ISO8859_1=m
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
CONFIG_NLS_ISO8859_15=m
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set

#
# Profiling support
#
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_IOVIRT is not set
CONFIG_MAGIC_SYSRQ=y
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_DEBUG_HIGHMEM is not set
# CONFIG_DEBUG_INFO is not set
CONFIG_DEBUG_SPINLOCK_SLEEP=y
CONFIG_FRAME_POINTER=y
CONFIG_X86_EXTRA_IRQS=y
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y

#
# Security options
#
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
CONFIG_CRYPTO=y
# CONFIG_CRYPTO_HMAC is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
# CONFIG_CRYPTO_MD5 is not set
# CONFIG_CRYPTO_SHA1 is not set
# CONFIG_CRYPTO_SHA256 is not set
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_DES is not set
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_AES=m
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_TEST is not set

#
# Library routines
#
CONFIG_CRC32=y
CONFIG_ZLIB_INFLATE=m
CONFIG_X86_BIOS_REBOOT=y
CONFIG_PC=y

[-- Attachment #3: cryptoloop.txt --]
[-- Type: text/plain, Size: 28563 bytes --]

Linux version 2.6.0-test8 (root@kahlua) (gcc version 3.3.2 (Debian)) #1 Sun Oct 19 16:24:32 EST 2003
Video mode to be used for restore is f00
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
 BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
 BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
127MB HIGHMEM available.
896MB LOWMEM available.
found SMP MP-table at 000f4db0
hm, page 000f4000 reserved twice.
hm, page 000f5000 reserved twice.
hm, page 000f0000 reserved twice.
hm, page 000f1000 reserved twice.
On node 0 totalpages: 262128
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 225280 pages, LIFO batch:16
  HighMem zone: 32752 pages, LIFO batch:7
DMI 2.3 present.
ACPI: RSDP (v000 GBT                                       ) @ 0x000f6730
ACPI: RSDT (v001 GBT    AWRDACPI 0x42302e31 AWRD 0x01010101) @ 0x3fff3000
ACPI: FADT (v001 GBT    AWRDACPI 0x42302e31 AWRD 0x01010101) @ 0x3fff3040
ACPI: MADT (v001 GBT    AWRDACPI 0x42302e31 AWRD 0x01010101) @ 0x3fff7280
ACPI: DSDT (v001 GBT    AWRDACPI 0x00001000 MSFT 0x0100000c) @ 0x00000000
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 6:8 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] polarity[0x0] trigger[0x0] lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] global_irq_base[0x0])
IOAPIC[0]: Assigned apic_id 2
IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, IRQ 0-23
ACPI: INT_SRC_OVR (bus[0] irq[0x0] global_irq[0x2] polarity[0x0] trigger[0x0])
ACPI: INT_SRC_OVR (bus[0] irq[0x9] global_irq[0x9] polarity[0x3] trigger[0x3])
Enabling APIC mode:  Flat.  Using 1 I/O APICs
Using ACPI (MADT) for SMP configuration information
Building zonelist for node : 0
Kernel command line: root=/dev/hda2 video=matroxfb:vesa:0x192 console=ttyS0
Initializing CPU#0
PID hash table entries: 4096 (order 12: 32768 bytes)
Debug: sleeping function called from invalid context at include/linux/rwsem.h:66
in_atomic():1, irqs_disabled():1
Call Trace:
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c025b0be>] cpufreq_register_notifier+0x2e/0xa0
 [<c0105000>] _stext+0x0/0x60
 [<c037ee4c>] init_tsc+0x4c/0x170
 [<c0105000>] _stext+0x0/0x60
 [<c011563f>] select_timer+0x2f/0x50
 [<c037b552>] time_init+0x42/0x70
 [<c03786b6>] start_kernel+0xb6/0x160
 [<c03784c0>] unknown_bootoption+0x0/0x100

Detected 2009.799 MHz processor.
Console: colour VGA+ 80x25
Memory: 1034072k/1048512k available (1788k kernel code, 13500k reserved, 728k data, 340k init, 131008k highmem)
Debug: sleeping function called from invalid context at mm/slab.c:1857
in_atomic():1, irqs_disabled():0
Call Trace:
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c0144de5>] kmem_cache_alloc+0x65/0x70
 [<c0105000>] _stext+0x0/0x60
 [<c0143f32>] kmem_cache_create+0x72/0x4d0
 [<c0383ea0>] mem_init+0x1a0/0x210
 [<c0105000>] _stext+0x0/0x60
 [<c0386efe>] kmem_cache_init+0x11e/0x2c0
 [<c03786d0>] start_kernel+0xd0/0x160
 [<c03784c0>] unknown_bootoption+0x0/0x100

Calibrating delay loop... 3956.73 BogoMIPS
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: AMD Athlon(tm) XP 2400+ stepping 01
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
enabled ExtINT on CPU#0
ESR value before enabling vector: 00000000
ESR value after enabling vector: 00000000
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=2 pin2=-1
testing the IO APIC.......................
.................................... done.
Using local APIC timer interrupts.
calibrating APIC timer ...
..... CPU clock speed is 2009.0117 MHz.
..... host bus clock speed is 267.0882 MHz.
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfa050, last bus=1
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20031002
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 1 *3 4 5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *7 10 11 12 14 15)
ACPI: PCI Interrupt Link [ALKA] (IRQs 20)
ACPI: PCI Interrupt Link [ALKB] (IRQs 21)
ACPI: PCI Interrupt Link [ALKC] (IRQs 22)
ACPI: PCI Interrupt Link [ALKD] (IRQs 23)
drivers/usb/core/usb.c: registered new driver usbfs
drivers/usb/core/usb.c: registered new driver hub
_CRS returns NULL! Using IRQ 21 for device (PCI Interrupt Link [ALKB]).
ACPI: PCI Interrupt Link [ALKB] enabled at IRQ 21
_CRS returns NULL! Using IRQ 20 for device (PCI Interrupt Link [ALKA]).
ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 20
_CRS returns NULL! Using IRQ 22 for device (PCI Interrupt Link [ALKC]).
ACPI: PCI Interrupt Link [ALKC] enabled at IRQ 22
_CRS returns NULL! Using IRQ 23 for device (PCI Interrupt Link [ALKD]).
ACPI: PCI Interrupt Link [ALKD] enabled at IRQ 23
PCI: Using ACPI for IRQ routing
PCI: if you experience problems, try using option 'pci=noacpi' or even 'acpi=off'
matroxfb: Matrox G450 detected
matroxfb: MTRR's turned on
matroxfb: 1152x864x16bpp (virtual: 1152x65536)
matroxfb: framebuffer at 0xD8000000, mapped to 0xf8811000, size 33554432
fb0: MATROX frame buffer device
fb0: initializing hardware
Machine check exception polling timer started.
ikconfig 0.7 with /proc/config*
highmem bounce pool size: 64 pages
Initializing Cryptographic API
PCI: Via IRQ fixup for 0000:00:10.0, from 10 to 5
PCI: Via IRQ fixup for 0000:00:10.1, from 3 to 5
PCI: Via IRQ fixup for 0000:00:10.2, from 11 to 5
ACPI: Power Button (FF) [PWRF]
ACPI: Processor [CPU0] (supports C1, 2 throttling states)
Console: switching to colour frame buffer device 144x54
pty: 256 Unix98 ptys configured
Real Time Clock Driver v1.12
Linux agpgart interface v0.100 (c) Dave Jones
agpgart: Detected VIA KT400/KT400A/KT600 chipset
agpgart: Maximum main memory to use for agp memory: 941M
agpgart: AGP aperture is 128M @ 0xd0000000
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing disabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
3c59x: Donald Becker and others. www.scyld.com/network/vortex.html
0000:00:0a.0: 3Com PCI 3c905C Tornado at 0xd000. Vers LK1.1.19
Universal TUN/TAP device driver 1.5 (C)1999-2002 Maxim Krasnyansky
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
VP_IDE: IDE controller at PCI slot 0000:00:11.1
VP_IDE: chipset revision 6
VP_IDE: not 100% native mode: will probe irqs later
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
VP_IDE: VIA vt8235 (rev 00) IDE UDMA133 controller on pci0000:00:11.1
    ide0: BM-DMA at 0xe800-0xe807, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0xe808-0xe80f, BIOS settings: hdc:DMA, hdd:pio
hda: WDC WD800JB-00ETA0, ATA DISK drive
Using anticipatory io scheduler
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hdc: Pioneer DVD-ROM ATAPIModel DVD-113 0114, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 1024KiB
hda: 156301488 sectors (80026 MB) w/8192KiB Cache, CHS=16383/255/63, UDMA(100)
 hda: hda1 hda2
Console: switching to colour frame buffer device 144x54
matroxfb_crtc2: secondary head of fb0 was registered as fb1
drivers/usb/host/uhci-hcd.c: USB Universal Host Controller Interface driver v2.1
uhci_hcd 0000:00:10.0: UHCI Host Controller
uhci_hcd 0000:00:10.0: irq 21, io base 0000dc00
uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
uhci_hcd 0000:00:10.1: UHCI Host Controller
uhci_hcd 0000:00:10.1: irq 21, io base 0000e000
uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
uhci_hcd 0000:00:10.2: UHCI Host Controller
uhci_hcd 0000:00:10.2: irq 21, io base 0000e400
uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
drivers/usb/core/usb.c: registered new driver hiddev
drivers/usb/core/usb.c: registered new driver hid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
mice: PS/2 mouse device common for all mice
serio: i8042 AUX port at 0x60,0x64 irq 12
input: AT Translated Set 2 keyboard on isa0060/serio0
serio: i8042 KBD port at 0x60,0x64 irq 1
NET: Registered protocol family 2
hub 1-0:1.0: new USB device on port 1, assigned address 2
IP: routing cache hash table of 8192 buckets, 64Kbytes
TCP: Hash tables configured (established 262144 bind 65536)
ip_conntrack version 2.1 (8191 buckets, 65528 max) - 300 bytes per conntrack
ip_tables: (C) 2000-2002 Netfilter core team
ipt_recent v0.3.1: Stephen Frost <sfrost@snowman.net>.  http://snowman.net/projects/ipt_recent/
NET: Registered protocol family 1
NET: Registered protocol family 17
BIOS EDD facility v0.10 2003-Oct-11, 1 devices found
Please report your BIOS at http://domsch.com/linux/edd30/results.html
ACPI: (supports S0 S3 S4 S5)
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 340k freed
INIT: version 2.85 booting
Starting Bootlog daemon: bootlogd.
Activating swap.
Checking root file system...
fsck 1.35-WIP (21-Aug-2003)
Linux: clean, 99544/809600 filesEXT3 FS on hda2, internal journal
, 804738/1616540 blocks
System time was Sun Oct 19 06:43:54 UTC 2003.
Setting the System Clock using the Hardware Clock as reference...
System Clock set. System local time is now Sun Oct 19 16:43:56 EST 2003.
Calculating module dependencies... done.
Loading modules...
All modules loaded.
Checking all file systems...
fsck 1.35-WIP (21-Aug-2003)
Setting kernel variables..
Mounting local filesystems...
/dev/shm on /tmp type tmpfs (rw,size=512M)
/dev/shm on /var/tmp type tmpfs (rw,size=256M)
none on /sys type sysfs (rw)
none on /proc/bus/usb type usbfs (rw)
Cleaning: /etc/network/ifstate.
Setting up IP spoofing protection: rp_filter.
Configuring network interfaces... Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.

Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html

Listening on LPF/eth0/00:50:da:b8:e4:e6
Sending on   LPF/eth0/00:50:da:b8:e4:e6
Sending on   Socket/fallback/fallback-net
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPACK from 210.8.121.68
bound to 210.8.121.79 -- renewal in  900 seconds.
done.
ttyS1: LSR safety check engaged!
ttyS1: LSR safety check engaged!

Starting portmap daemon: portmap.
Loading the saved-state of the serial devices... 
/dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
/dev/ttyS1 at 0x02f8 (irq = 3) is a 16550A

Setting the System Clock using the Hardware Clock as reference...
System Clock set. Local time: Sun Oct 19 16:43:59 EST 2003

Cleaning: /tmp /var/lock /var/run.
Initializing random number generator... done.
Recovering nvi editor sessions... done.
Setting up X server socket directory /tmp/.X11-unix...done.
INIT: Entering runlevel: 2
Starting system log daemon: syslogd.
Starting kernel log daemon: klogd.
Starting Advanced Configuration and Power Interface daemon: acpid.
Starting mouse interface server: gpm.
Starting internet superserver: inetd.
Starting printer spooler: lpd.
Starting mail transport agent: Postfix.
Enabling S.M.A.R.T. for: /dev/hdadrivers/usb/input/hid-core.c: ctrl urb status -104 received
drivers/usb/input/hid-core.c: timeout initializing reports

input: USB HID v1.00 Mouse [Logitech Inc. iFeel Mouse   ] on usb-0000:00:10.0-1
hub 1-0:1.0: new USB device on port 2, assigned address 3
.
hub 1-2:1.0: USB hub found
Starting S.M.A.Rhub 1-2:1.0: 3 ports detected
.T. daemon: smartdhub 3-0:1.0: new USB device on port 2, assigned address 2
hub 1-2:1.0: new USB device on port 1, assigned address 4
input: USB HID v1.00 Keyboard [Chicony  PFU-65 USB Keyboard] on usb-0000:00:10.0-2.1
.
Starting OpenBSD Secure Shell sehub 1-2:1.0: new USB device on port 3, assigned address 5
rver: sshdinput: USB HID v1.00 Joystick [Microsoft Microsoft SideWinder game controller] on usb-0000:00:10.0-2.3
.
Starting deferred execution scheduler: atd.
Starting periodic command scheduler: cronbootlogd.

Connected to Linux kahlua ttyS0

kahlua login: root
Password: 
Last login: Sun Oct 19 16:42:59 2003 on ttyS0
Linux kahlua 2.6.0-test8 #1 Sun Oct 19 16:24:32 EST 2003 i686 GNU/Linux

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
kahlua:~# modprobe loop
loop: loaded (max 8 devices)
kahlua:~# modprobe cryptoloop
kahlua:~# modprobe aes
kahlua:~# losetup -e aes /dev/loop0 /root/foo.dsk 
Password: 
kahlua:~# mkfs -t ext2 /dev/loop0
mke2fs 1.35-WIP (21-Aug-2003)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
16384 inodes, 65536 blocks
3276 blocks (5.00%) reserved for the super user
First data block=1
8 block groups
8192 blocks per group, 8192 fragments per group
2048 inodes per group
Superblock backups stored on blocks: 
	8193, 24577, 40961, 57345

Writing inode tables: 0/8\b\b\b1/8\b\b\b2/8\b\b\b3/8\b\b\b4/8\b\b\b5/8\b\b\b6/8\b\b\b7/8\b\b\bdone                            
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 23 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
kahlua:~# ------------[ cut here ]------------
kernel BUG at mm/memory.c:1515!
invalid operand: 0000 [#1]
CPU:    0
EIP:    0060:[<c014bca0>]    Not tainted
EFLAGS: 00010246
EIP is at do_file_page+0x100/0x110
eax: 00000000   ebx: f7d18200   ecx: fffedffc   edx: f7d17bfc
esi: 00000001   edi: bffff604   ebp: f7cf1d94   esp: f7cf1d6c
ds: 007b   es: 007b   ss: 0068
Process syslogd (pid: 174, threadinfo=f7cf0000 task=f7d9a0c0)
Stack: f7d17bfc 00000ffc f7cf1d94 c0149a54 c19f20e0 00000007 f7dc6440 f7d17bfc 
       bffff604 f7dc6440 f7cf1dc4 c014bd38 f7dc6440 f7d18200 bffff604 00000001 
       fffedffc f7d17bfc f79e5000 f7dc6440 f7dc6460 f7d18200 f7cf1e74 c011cf90 
Call Trace:
 [<c0149a54>] pte_alloc_map+0xa4/0xd0
 [<c014bd38>] handle_mm_fault+0x88/0x180
 [<c011cf90>] do_page_fault+0x320/0x53a
 [<c01417be>] buffered_rmqueue+0xce/0x170
 [<c011eb39>] schedule+0x2f9/0x580
 [<c011cc70>] do_page_fault+0x0/0x53a
 [<c010ad79>] error_code+0x2d/0x38
 [<c0109b92>] setup_frame+0xc2/0x1e0
 [<c010a066>] handle_signal+0x106/0x150
 [<c010a145>] do_signal+0x95/0xf0
 [<c016c202>] sys_select+0x222/0x4d0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

Code: 0f 0b eb 05 1b ab 2d c0 e9 2c ff ff ff 8d 76 00 55 ba 00 e0 
 <6>note: syslogd[174] exited with preempt_count 2
swap_free: Bad swap file entry f820ea5d
------------[ cut here ]------------
kernel BUG at include/linux/mm.h:267!
invalid operand: 0000 [#2]
CPU:    0
EIP:    0060:[<c0154d4d>]    Not tainted
EFLAGS: 00010246
EIP is at free_page_and_swap_cache+0x3d/0x70
eax: 00000000   ebx: c147ebe0   ecx: 00000000   edx: c03d1688
esi: fffed13c   edi: 00001000   ebp: f7cf1b4c   esp: f7cf1b44
ds: 007b   es: 007b   ss: 0068
Process syslogd (pid: 174, threadinfo=f7cf0000 task=f7d9a0c0)
Stack: fffed13c 00000000 f7cf1b80 c014a0b8 c147ebe0 00000007 00000020 0000007b 
       c147ebe0 1cc4c139 0804f000 c03d1688 f7d17084 0844f000 08050000 f7cf1ba8 
       c014a13e c03d1688 f7d17080 0804f000 00001000 c03d1688 0804f000 f7d17084 
Call Trace:
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0198684>] __ext3_journal_stop+0x24/0x50
 [<c0191f48>] ext3_ordered_commit_write+0xc8/0xe0
 [<c013d956>] unlock_page+0x16/0x50
 [<c010ad79>] error_code+0x2d/0x38
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0149a54>] pte_alloc_map+0xa4/0xd0
 [<c014bd38>] handle_mm_fault+0x88/0x180
 [<c011cf90>] do_page_fault+0x320/0x53a
 [<c01417be>] buffered_rmqueue+0xce/0x170
 [<c011eb39>] schedule+0x2f9/0x580
 [<c011cc70>] do_page_fault+0x0/0x53a
 [<c010ad79>] error_code+0x2d/0x38
 [<c0109b92>] setup_frame+0xc2/0x1e0
 [<c010a066>] handle_signal+0x106/0x150
 [<c010a145>] do_signal+0x95/0xf0
 [<c016c202>] sys_select+0x222/0x4d0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

Code: 0f 0b 0b 01 0d 85 2d c0 eb dc 0f ba 2b 00 19 c0 85 c0 75 c4 
 <6>note: syslogd[174] exited with preempt_count 4
Debug: sleeping function called from invalid context at net/socket.c:911
in_atomic():1, irqs_disabled():0
Call Trace:
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c025f9c0>] sock_fasync+0x50/0x250
 [<c025f94b>] sock_close+0x2b/0x50
 [<c015a5cd>] __fput+0x10d/0x120
 [<c0158c07>] filp_close+0x57/0x80
 [<c0123b97>] put_files_struct+0x67/0xd0
 [<c0124769>] do_exit+0x119/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c011ee3a>] default_wake_function+0x2a/0x30
 [<c011ee71>] __wake_up_common+0x31/0x60
 [<c0122dac>] printk+0x12c/0x180
 [<c010ad79>] error_code+0x2d/0x38
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0198684>] __ext3_journal_stop+0x24/0x50
 [<c0191f48>] ext3_ordered_commit_write+0xc8/0xe0
 [<c013d956>] unlock_page+0x16/0x50
 [<c010ad79>] error_code+0x2d/0x38
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0149a54>] pte_alloc_map+0xa4/0xd0
 [<c014bd38>] handle_mm_fault+0x88/0x180
 [<c011cf90>] do_page_fault+0x320/0x53a
 [<c01417be>] buffered_rmqueue+0xce/0x170
 [<c011eb39>] schedule+0x2f9/0x580
 [<c011cc70>] do_page_fault+0x0/0x53a
 [<c010ad79>] error_code+0x2d/0x38
 [<c0109b92>] setup_frame+0xc2/0x1e0
 [<c010a066>] handle_signal+0x106/0x150
 [<c010a145>] do_signal+0x95/0xf0
 [<c016c202>] sys_select+0x222/0x4d0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

Debug: sleeping function called from invalid context at kernel/workqueue.c:237
in_atomic():1, irqs_disabled():0
Call Trace:
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c0131a4f>] flush_workqueue+0x1f/0x130
 [<c011ee71>] __wake_up_common+0x31/0x60
 [<c016afcb>] fasync_helper+0x8b/0xf0
 [<c01de544>] reset_buffer_flags+0x84/0x90
 [<c01dc2ee>] release_dev+0x4ce/0x640
 [<c016feb9>] dput+0x1b9/0x220
 [<c025ec5d>] sock_destroy_inode+0x1d/0x20
 [<c0171b86>] destroy_inode+0x36/0x50
 [<c0172e33>] iput+0x63/0x80
 [<c01dc7db>] tty_release+0x2b/0x60
 [<c015a5cd>] __fput+0x10d/0x120
 [<c0158c07>] filp_close+0x57/0x80
 [<c0123b97>] put_files_struct+0x67/0xd0
 [<c0124769>] do_exit+0x119/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c011ee3a>] default_wake_function+0x2a/0x30
 [<c011ee71>] __wake_up_common+0x31/0x60
 [<c0122dac>] printk+0x12c/0x180
 [<c010ad79>] error_code+0x2d/0x38
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0198684>] __ext3_journal_stop+0x24/0x50
 [<c0191f48>] ext3_ordered_commit_write+0xc8/0xe0
 [<c013d956>] unlock_page+0x16/0x50
 [<c010ad79>] error_code+0x2d/0x38
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0149a54>] pte_alloc_map+0xa4/0xd0
 [<c014bd38>] handle_mm_fault+0x88/0x180
 [<c011cf90>] do_page_fault+0x320/0x53a
 [<c01417be>] buffered_rmqueue+0xce/0x170
 [<c011eb39>] schedule+0x2f9/0x580
 [<c011cc70>] do_page_fault+0x0/0x53a
 [<c010ad79>] error_code+0x2d/0x38
 [<c0109b92>] setup_frame+0xc2/0x1e0
 [<c010a066>] handle_signal+0x106/0x150
 [<c010a145>] do_signal+0x95/0xf0
 [<c016c202>] sys_select+0x222/0x4d0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

bad: scheduling while atomic!
Call Trace:
 [<c011edad>] schedule+0x56d/0x580
 [<c010a3ba>] work_notifysig+0x13/0x15
 [<c010b0fe>] dump_stack+0x1e/0x20
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c0131aff>] flush_workqueue+0xcf/0x130
 [<c01205c0>] autoremove_wake_function+0x0/0x50
 [<c01de544>] reset_buffer_flags+0x84/0x90
 [<c01205c0>] autoremove_wake_function+0x0/0x50
 [<c01dc2ee>] release_dev+0x4ce/0x640
 [<c016feb9>] dput+0x1b9/0x220
 [<c025ec5d>] sock_destroy_inode+0x1d/0x20
 [<c0171b86>] destroy_inode+0x36/0x50
 [<c0172e33>] iput+0x63/0x80
 [<c01dc7db>] tty_release+0x2b/0x60
 [<c015a5cd>] __fput+0x10d/0x120
 [<c0158c07>] filp_close+0x57/0x80
 [<c0123b97>] put_files_struct+0x67/0xd0
 [<c0124769>] do_exit+0x119/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c011ee3a>] default_wake_function+0x2a/0x30
 [<c011ee71>] __wake_up_common+0x31/0x60
 [<c0122dac>] printk+0x12c/0x180
 [<c010ad79>] error_code+0x2d/0x38
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0198684>] __ext3_journal_stop+0x24/0x50
 [<c0191f48>] ext3_ordered_commit_write+0xc8/0xe0
 [<c013d956>] unlock_page+0x16/0x50
 [<c010ad79>] error_code+0x2d/0x38
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0149a54>] pte_alloc_map+0xa4/0xd0
 [<c014bd38>] handle_mm_fault+0x88/0x180
 [<c011cf90>] do_page_fault+0x320/0x53a
 [<c01417be>] buffered_rmqueue+0xce/0x170
 [<c011eb39>] schedule+0x2f9/0x580
 [<c011cc70>] do_page_fault+0x0/0x53a
 [<c010ad79>] error_code+0x2d/0x38
 [<c0109b92>] setup_frame+0xc2/0x1e0
 [<c010a066>] handle_signal+0x106/0x150
 [<c010a145>] do_signal+0x95/0xf0
 [<c016c202>] sys_select+0x222/0x4d0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

swap_dup: Bad swap file entry 60d135f3
VM: killing process klogd
Debug: sleeping function called from invalid context at include/asm/semaphore.h:119
in_atomic():1, irqs_disabled():0
Call Trace:
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c0166056>] pipe_rdwr_fasync+0x26/0xa0
 [<c0172e33>] iput+0x63/0x80
 [<c0166174>] pipe_rdwr_release+0x24/0x50
 [<c015a5cd>] __fput+0x10d/0x120
 [<c0158c07>] filp_close+0x57/0x80
 [<c0123b97>] put_files_struct+0x67/0xd0
 [<c0124769>] do_exit+0x119/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c011ee3a>] default_wake_function+0x2a/0x30
 [<c011ee71>] __wake_up_common+0x31/0x60
 [<c0122dac>] printk+0x12c/0x180
 [<c010ad79>] error_code+0x2d/0x38
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0198684>] __ext3_journal_stop+0x24/0x50
 [<c0191f48>] ext3_ordered_commit_write+0xc8/0xe0
 [<c013d956>] unlock_page+0x16/0x50
 [<c010ad79>] error_code+0x2d/0x38
 [<c014bca0>] do_file_page+0x100/0x110
 [<c0149a54>] pte_alloc_map+0xa4/0xd0
 [<c014bd38>] handle_mm_fault+0x88/0x180
 [<c011cf90>] do_page_fault+0x320/0x53a
 [<c01417be>] buffered_rmqueue+0xce/0x170
 [<c011eb39>] schedule+0x2f9/0x580
 [<c011cc70>] do_page_fault+0x0/0x53a
 [<c010ad79>] error_code+0x2d/0x38
 [<c0109b92>] setup_frame+0xc2/0x1e0
 [<c010a066>] handle_signal+0x106/0x150
 [<c010a145>] do_signal+0x95/0xf0
 [<c016c202>] sys_select+0x222/0x4d0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

------------[ cut here ]------------
kernel BUG at include/linux/mm.h:267!
invalid operand: 0000 [#3]
CPU:    0
EIP:    0060:[<c0154d4d>]    Not tainted
EFLAGS: 00010246
EIP is at free_page_and_swap_cache+0x3d/0x70
eax: 00000000   ebx: c14713a0   ecx: 00000040   edx: c03d1688
esi: fffed124   edi: 00005000   ebp: f7969db0   esp: f7969da8
ds: 007b   es: 007b   ss: 0068
Process klogd (pid: 177, threadinfo=f7968000 task=f7cde100)
Stack: fffed124 00001000 f7969de4 c014a0b8 c14713a0 00000007 f7969de8 114a2a82 
       c14713a0 1c6e4eda 08048000 c03d1688 f7cf7084 08448000 0804d000 f7969e0c 
       c014a13e c03d1688 f7cf7080 08048000 00005000 c03d1688 08048000 f7cf7084 
Call Trace:
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c0124b0a>] do_group_exit+0x3a/0xb0
 [<c012d8a1>] get_signal_to_deliver+0x251/0x360
 [<c010a11a>] do_signal+0x6a/0xf0
 [<c011ee10>] default_wake_function+0x0/0x30
 [<c011ee10>] default_wake_function+0x0/0x30
 [<c01594f0>] vfs_read+0xa0/0x120
 [<c015978f>] sys_read+0x3f/0x60
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15

Code: 0f 0b 0b 01 0d 85 2d c0 eb dc 0f ba 2b 00 19 c0 85 c0 75 c4 
 <6>note: klogd[177] exited with preempt_count 2
Debug: sleeping function called from invalid context at net/socket.c:911
in_atomic():1, irqs_disabled():0
Call Trace:
 [<c01201f0>] __might_sleep+0xa0/0xf0
 [<c025f9c0>] sock_fasync+0x50/0x250
 [<c025f94b>] sock_close+0x2b/0x50
 [<c015a5cd>] __fput+0x10d/0x120
 [<c0158c07>] filp_close+0x57/0x80
 [<c0123b97>] put_files_struct+0x67/0xd0
 [<c0124769>] do_exit+0x119/0x410
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010b421>] die+0xe1/0xf0
 [<c010b7b3>] do_invalid_op+0xb3/0xc0
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c010c8d9>] do_IRQ+0x109/0x140
 [<c010acdc>] common_interrupt+0x18/0x20
 [<c010ad79>] error_code+0x2d/0x38
 [<c0154d4d>] free_page_and_swap_cache+0x3d/0x70
 [<c014a0b8>] zap_pte_range+0x188/0x1c0
 [<c014a13e>] zap_pmd_range+0x4e/0x70
 [<c014a1a1>] unmap_page_range+0x41/0x70
 [<c014a2c0>] unmap_vmas+0xf0/0x220
 [<c014e229>] exit_mmap+0x79/0x190
 [<c0120875>] mmput+0x65/0xc0
 [<c012472e>] do_exit+0xde/0x410
 [<c0124b0a>] do_group_exit+0x3a/0xb0
 [<c012d8a1>] get_signal_to_deliver+0x251/0x360
 [<c010a11a>] do_signal+0x6a/0xf0
 [<c011ee10>] default_wake_function+0x0/0x30
 [<c011ee10>] default_wake_function+0x0/0x30
 [<c01594f0>] vfs_read+0xa0/0x120
 [<c015978f>] sys_read+0x3f/0x60
 [<c010b700>] do_invalid_op+0x0/0xc0
 [<c010a1db>] do_notify_resume+0x3b/0x40
 [<c010a3ba>] work_notifysig+0x13/0x15


kahlua:~# reboot
Illegal instruction
kahlua:~# 
[RESET]

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-10 23:27     ` Peter Lieverdink
@ 2003-11-10 23:46       ` bill davidsen
  2003-11-11  0:15       ` Linus Torvalds
                         ` (2 subsequent siblings)
  3 siblings, 0 replies; 16+ messages in thread
From: bill davidsen @ 2003-11-10 23:46 UTC (permalink / raw)
  To: linux-kernel

In article <6.0.0.22.2.20031111101721.01bde418@caffeine.cc.com.au>,
Peter Lieverdink  <linux@cafuego.net> wrote:
| 
| At 09:41 11/11/2003, you wrote:
| >In article <20031109131018.GA18342@deneb.enyo.de>,
| >Florian Weimer  <fw@deneb.enyo.de> wrote:
| >| Soeren Sonnenburg wrote:
| >|
| >| > losetup -e blowfish /dev/loop0 /file
| >| > Password:
| >| > mkfs -t ext3 /dev/loop0
| >| > mount /dev/loop0 /mnt
| >| > <error unknown fs type>
| >| > <from here something was seriously broken... could not reboot anymore>
| >|
| >| I'm seeing something similar, but in my case, mke2fs already crashes.
| >|
| >| > system is:
| >| > Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux
| >|
| >| Mine ist -test9 on x86.
| >|
| >| Have you found a solution in the meantime?
| >
| >I have been using aes and not seeing this. I suppose it's unlikely that
| >there could be an error in the kernel crypto, but I think I'll wait and
| >try blowfish on a non-critical machine.
| 
| My solution has been to not use cryptofs, it crashes with whatever 
| algorithm I choose :-(
| 
| I agree that something is very broken, though. Mind you, I can only 
| replicate this problem on one of my machines - the other one I've tried it 
| on seems to work fine. Odder still, when I compile a kernel on the machine 
| which is fine and ruin said kernel on the machine which is not fine, I 
| don't experience the crash.

Compiler version problem? In any case it sounds as if you have a
solution for the moment.
-- 
bill davidsen <davidsen@tmr.com>
  CTO, TMR Associates, Inc
Doing interesting things with little computers since 1979.

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-10 23:27     ` Peter Lieverdink
  2003-11-10 23:46       ` bill davidsen
@ 2003-11-11  0:15       ` Linus Torvalds
  2003-11-11  8:54         ` Florian Weimer
  2003-11-11  2:50       ` Valdis.Kletnieks
  2004-01-06 10:36       ` Peter Lieverdink
  3 siblings, 1 reply; 16+ messages in thread
From: Linus Torvalds @ 2003-11-11  0:15 UTC (permalink / raw)
  To: Peter Lieverdink; +Cc: linux-kernel


On Tue, 11 Nov 2003, Peter Lieverdink wrote:
> 
> I agree that something is very broken, though. Mind you, I can only 
> replicate this problem on one of my machines - the other one I've tried it 
> on seems to work fine. Odder still, when I compile a kernel on the machine 
> which is fine and ruin said kernel on the machine which is not fine, I 
> don't experience the crash.

That _really_ sounds like your "broken machine" is nothing more than a
broken compiler (or possibly binutils, but compilers tend to be more
fragile by far, so it's more likely the compiler).

What compiler versions do you have installed on the broken vs good
machines?

		Linus


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-10 23:27     ` Peter Lieverdink
  2003-11-10 23:46       ` bill davidsen
  2003-11-11  0:15       ` Linus Torvalds
@ 2003-11-11  2:50       ` Valdis.Kletnieks
  2003-11-11  9:43         ` Peter Lieverdink
  2004-01-06 10:36       ` Peter Lieverdink
  3 siblings, 1 reply; 16+ messages in thread
From: Valdis.Kletnieks @ 2003-11-11  2:50 UTC (permalink / raw)
  To: Peter Lieverdink; +Cc: linux-kernel

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

On Tue, 11 Nov 2003 10:27:16 +1100, Peter Lieverdink <linux@cafuego.net>  said:

> I agree that something is very broken, though. Mind you, I can only 
> replicate this problem on one of my machines - the other one I've tried it 
> on seems to work fine. Odder still, when I compile a kernel on the machine 
> which is fine and ruin said kernel on the machine which is not fine, I 
> don't experience the crash.

Could we see a 'gcc -V' from *both* machines, please? (and an 'as -v'
and 'ld -v' as well, just to be thorough?)

[-- Attachment #2: Type: application/pgp-signature, Size: 226 bytes --]

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-11  0:15       ` Linus Torvalds
@ 2003-11-11  8:54         ` Florian Weimer
  0 siblings, 0 replies; 16+ messages in thread
From: Florian Weimer @ 2003-11-11  8:54 UTC (permalink / raw)
  To: linux-kernel

Linus Torvalds wrote:

> What compiler versions do you have installed on the broken vs good
> machines?

GCC 3.3.2 (Debian 3.3.2-3) is broken for me (binutils is 2.14.89.0.7-2).

Which compiler is recommend/known to work?  The README file mentions GCC
2.95.3, but this one has problems as well, AFAIK.

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-11  2:50       ` Valdis.Kletnieks
@ 2003-11-11  9:43         ` Peter Lieverdink
  2003-11-11 16:49           ` Linus Torvalds
  0 siblings, 1 reply; 16+ messages in thread
From: Peter Lieverdink @ 2003-11-11  9:43 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Valdis.Kletnieks, linux-kernel


>On Tue, 11 Nov 2003 10:27:16 +1100, Peter Lieverdink 
><linux@cafuego.net>  said:
>
> > I agree that something is very broken, though. Mind you, I can only
> > replicate this problem on one of my machines - the other one I've tried it
> > on seems to work fine. Odder still, when I compile a kernel on the machine
> > which is fine and ruin said kernel on the machine which is not fine, I
> > don't experience the crash.
>
>At 11:15 11/11/2003, you wrote:
>That _really_ sounds like your "broken machine" is nothing more than a
>broken compiler (or possibly binutils, but compilers tend to be more
>fragile by far, so it's more likely the compiler).
>
>What compiler versions do you have installed on the broken vs good
>machines?
>
>At 13:50 11/11/2003, you wrote:
>Could we see a 'gcc -V' from *both* machines, please? (and an 'as -v'
>and 'ld -v' as well, just to be thorough?)

They're the same. Both boxes use Debian Sid with gcc-3.3.2. I made sure 
they were both running the same versions of gcc/binutils when I tested it. 
When I use gcc-2.95.4 (gcc version 2.95.4 20011002 Debian prerelease) on 
the "broken" machine I get a crash at the same point, but with different 
output. (not captured, due to got annoyed and gave up) I can probably spend 
an hour or so recompiling and capturing said crash if you want me to.

As for software versions (kahlua is "bad", shiraz is "good")

root@kahlua:~$ gcc -v
Reading specs from /usr/lib/gcc-lib/i486-linux/3.3.2/specs
Configured with: ../src/configure -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared 
--with-system-zlib --enable-nls --without-included-gettext 
--enable-__cxa_atexit --enable-clocale=gnu --enable-debug 
--enable-java-gc=boehm --enable-java-awt=xlib --enable-objc-gc i486-linux
Thread model: posix
gcc version 3.3.2 (Debian)

root@kahlua:~$ as -v
GNU assembler version 2.14.90.0.7 (i386-linux) using BFD version 
2.14.90.0.7 20031029 Debian GNU/Linux

root@kahlua:~$ ld -v
GNU ld version 2.14.90.0.7 20031029 Debian GNU/Linux

root@shiraz:~$ gcc -v
Reading specs from /usr/lib/gcc-lib/i486-linux/3.3.2/specs
Configured with: ../src/configure -v 
--enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr 
--mandir=/usr/share/man --infodir=/usr/share/info 
--with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared 
--with-system-zlib --enable-nls --without-included-gettext 
--enable-__cxa_atexit --enable-clocale=gnu --enable-debug 
--enable-java-gc=boehm --enable-java-awt=xlib --enable-objc-gc i486-linux
Thread model: posix
gcc version 3.3.2 (Debian)

root@shiraz:~$ as -v
GNU assembler version 2.14.90.0.7 (i386-linux) using BFD version 
2.14.90.0.7 20031029 Debian GNU/Linux

root@shiraz:~$ ld -v
GNU ld version 2.14.90.0.7 20031029 Debian GNU/Linux

As you see, versions are identical on both machines - this is what had me 
baffled. Every single other thing works fine on the "bad" machine, so I 
tend to not suspect a hardware problem.

- Peter. 


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-11  9:43         ` Peter Lieverdink
@ 2003-11-11 16:49           ` Linus Torvalds
  2003-11-16  8:46             ` Peter Lieverdink
  0 siblings, 1 reply; 16+ messages in thread
From: Linus Torvalds @ 2003-11-11 16:49 UTC (permalink / raw)
  To: Peter Lieverdink; +Cc: Valdis.Kletnieks, linux-kernel


On Tue, 11 Nov 2003, Peter Lieverdink wrote:
> >At 13:50 11/11/2003, you wrote:
> >Could we see a 'gcc -V' from *both* machines, please? (and an 'as -v'
> >and 'ld -v' as well, just to be thorough?)
> 
> They're the same. Both boxes use Debian Sid with gcc-3.3.2.

[ Taa-daa-taa-daa.. Theme from "The Twilight Zone" ]

And yet the kenrel works when built on one machine?

I'd love to see what the differences are. If the .config etc are all 100%
the same, I'd like to see what "diff" reports on the generated vmlinux
files (well, to be honest, I'd need either both files on some web-site, or 
you to actually run diff and find _where_ the differences are).

		Linus


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-11 16:49           ` Linus Torvalds
@ 2003-11-16  8:46             ` Peter Lieverdink
  0 siblings, 0 replies; 16+ messages in thread
From: Peter Lieverdink @ 2003-11-16  8:46 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Valdis.Kletnieks, Jindrich Makovicka, linux-kernel

At 03:49 12/11/2003, you wrote:

>On Tue, 11 Nov 2003, Peter Lieverdink wrote:
> > >At 13:50 11/11/2003, you wrote:
> > >Could we see a 'gcc -V' from *both* machines, please? (and an 'as -v'
> > >and 'ld -v' as well, just to be thorough?)
> >
> > They're the same. Both boxes use Debian Sid with gcc-3.3.2.
>
>[ Taa-daa-taa-daa.. Theme from "The Twilight Zone" ]
>
>And yet the kenrel works when built on one machine?
>
>I'd love to see what the differences are. If the .config etc are all 100%
>the same, I'd like to see what "diff" reports on the generated vmlinux
>files (well, to be honest, I'd need either both files on some web-site, or
>you to actually run diff and find _where_ the differences are).
>
>                 Linus

Well, due to [insert long explanation] the -test8 kernel wasn't available. 
The "good" machine built a -test9, which crashed as well. *sigh* Mind you, 
there are differences between the kernel _it_ builds and the one built by 
the "bad" machine. I've uploaded a alien -t'd debian kernel packages to the 
fastest web space I have for you to have a peek, if you have some time. 
(what with lawsuits and whatnot ;-)

2.6.0-test9 built on the "good" box:
http://monolith.dnsalias.org/~cafuego/kernel-image-2.6.0-test9-kahlua.1.tgz

2.6.0-test9 built on the "bad" box:
http://monolith.dnsalias.org/~cafuego/kernel-image-2.6.0-test9-kahlua.2.tgz

More importantly though, the post from Jindrich:

At 00:13 16/11/2003, you wrote:
>I can confirm, having similar problem. I am using Debian Sid & 
>2.6.0-test9, with 4Gig highmem support (1.5G physical RAM). When reading 
>from cryptoloop (dd if=/dev/loop0 of=testoutput), it seems to produce only 
>noise. Each run of dd produces completely different heap of garbage. When 
>I disable highmem, getting rid of about 512 Megs, cryptoloop seems to work 
>as expected - I can do losetup & mke2fs & mount & read/write files & 
>unmount & losetup -d & again.. ad nauseam.
>
>Jindrich Makovicka

When I compiled on the "bad" machine with disabled HIGHMEM, the resultant 
kernel has NO problems with cryptoloop. I can make a cryptoloop fs, mount, 
copy, unmount, remount etc. That kernel is at:
http://monolith.dnsalias.org/~cafuego/kernel-image-2.6.0-test9-kahlua.3.tgz

So I guess HIGHMEM breaks cryptoloop somehow.

- Peter.





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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2003-11-10 23:27     ` Peter Lieverdink
                         ` (2 preceding siblings ...)
  2003-11-11  2:50       ` Valdis.Kletnieks
@ 2004-01-06 10:36       ` Peter Lieverdink
  2004-01-06 10:53         ` Matthias Hentges
  3 siblings, 1 reply; 16+ messages in thread
From: Peter Lieverdink @ 2004-01-06 10:36 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton

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

On Tue, 2003-11-11 at 10:27, Peter Lieverdink wrote:
> At 09:41 11/11/2003, you wrote:
> >In article <20031109131018.GA18342@deneb.enyo.de>,
> >Florian Weimer  <fw@deneb.enyo.de> wrote:
> >| Soeren Sonnenburg wrote:
> >|
> >| > losetup -e blowfish /dev/loop0 /file
> >| > Password:
> >| > mkfs -t ext3 /dev/loop0
> >| > mount /dev/loop0 /mnt
> >| > <error unknown fs type>
> >| > <from here something was seriously broken... could not reboot anymore>
> >|
> >| I'm seeing something similar, but in my case, mke2fs already crashes.
> >|
> >| > system is:
> >| > Linux no 2.6.0-test7 #8 Sun Oct 26 17:00:49 CET 2003 ppc GNU/Linux
> >|
> >| Mine ist -test9 on x86.
> >|
> >| Have you found a solution in the meantime?
> >
> >I have been using aes and not seeing this. I suppose it's unlikely that
> >there could be an error in the kernel crypto, but I think I'll wait and
> >try blowfish on a non-critical machine.
> 
> My solution has been to not use cryptofs, it crashes with whatever 
> algorithm I choose :-(

I've been using 'highmem=off' until now, which provided a workaround.
Just built 2.6.1-rc1-mm2 and cryptloop+highmem works as it should now.

- peter.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
  2004-01-06 10:36       ` Peter Lieverdink
@ 2004-01-06 10:53         ` Matthias Hentges
  0 siblings, 0 replies; 16+ messages in thread
From: Matthias Hentges @ 2004-01-06 10:53 UTC (permalink / raw)
  To: linux-kernel

Am Die, 2004-01-06 um 11.36 schrieb Peter Lieverdink:
> On Tue, 2003-11-11 at 10:27, Peter Lieverdink wrote:
> > At 09:41 11/11/2003, you wrote:

[...]

> > My solution has been to not use cryptofs, it crashes with whatever 
> > algorithm I choose :-(
> 
> I've been using 'highmem=off' until now, which provided a workaround.
> Just built 2.6.1-rc1-mm2 and cryptloop+highmem works as it should now.

FYI, cryptoloop works as expected in 2.6.0-mm2 both with and without
highmem support.

A vanilla 2.6.0 ist unusable due to oopses / data corruption (don't fsck
a cryptoloop device!) (again, with and without highmem).

I hope the -mm loop fixes will be included in 2.6.1.

HAND
-- 

Matthias Hentges 
Cologne / Germany

[www.hentges.net] -> PGP welcome, HTML tolerated
ICQ: 97 26 97 4   -> No files, no URL's

My OS: Debian Woody. Geek by Nature, Linux by Choice


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

* Re: loopback device + crypto = crash on 2.6.0-test7 ?
@ 2003-11-15 13:13 Jindrich Makovicka
  0 siblings, 0 replies; 16+ messages in thread
From: Jindrich Makovicka @ 2003-11-15 13:13 UTC (permalink / raw)
  To: linux-kernel

I can confirm, having similar problem. I am using Debian Sid & 
2.6.0-test9, with 4Gig highmem support (1.5G physical RAM). When reading 
from cryptoloop (dd if=/dev/loop0 of=testoutput), it seems to produce 
only noise. Each run of dd produces completely different heap of 
garbage. When I disable highmem, getting rid of about 512 Megs, 
cryptoloop seems to work as expected - I can do losetup & mke2fs & mount 
& read/write files & unmount & losetup -d & again.. ad nauseam.

Regards,
-- 
Jindrich Makovicka

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

end of thread, other threads:[~2004-01-06 10:53 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-29  7:09 loopback device + crypto = crash on 2.6.0-test7 ? Soeren Sonnenburg
2003-11-07 14:01 ` Bill Davidsen
2003-11-09 13:10 ` Florian Weimer
2003-11-09 12:23   ` Soeren Sonnenburg
2003-11-10 22:41   ` bill davidsen
2003-11-10 23:27     ` Peter Lieverdink
2003-11-10 23:46       ` bill davidsen
2003-11-11  0:15       ` Linus Torvalds
2003-11-11  8:54         ` Florian Weimer
2003-11-11  2:50       ` Valdis.Kletnieks
2003-11-11  9:43         ` Peter Lieverdink
2003-11-11 16:49           ` Linus Torvalds
2003-11-16  8:46             ` Peter Lieverdink
2004-01-06 10:36       ` Peter Lieverdink
2004-01-06 10:53         ` Matthias Hentges
2003-11-15 13:13 Jindrich Makovicka

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).