Chiaki ([email protected])

Number of posts: 49 (0.03 per day)
First post: 2000-11-25 01:25:42
Last post: 2004-11-07 06:01:00

Date List Subject
2004-11-07 06:01:00 linux-kernel Re: Configuration system bug? : tmpfs listing in /proc/filesystems when TMPFS was not configured!?
2004-11-07 02:12:17 linux-kernel Re: Configuration system bug? : tmpfs listing in /proc/filesystems when TMPFS was not configured!?
2004-11-07 02:06:05 linux-kernel Re: Configuration system bug? : tmpfs listing in /proc/filesystems when TMPFS was not configured!?
2004-11-07 01:31:42 linux-kernel Re: Configuration system bug? : tmpfs listing in /proc/filesystems when TMPFS was not configured!?
2004-11-06 17:51:19 linux-kernel Configuration system bug? : tmpfs listing in /proc/filesystems when TMPFS was not configured!?
2004-10-02 20:29:20 linux-kernel Re: FSCK message suppressed during booting? (2.6.9-rc2)
2004-09-30 22:12:22 linux-kernel Re: FSCK message suppressed during booting? (2.6.9-rc2)
2004-09-30 20:38:23 linux-kernel Re: FSCK message suppressed during booting? (2.6.9-rc2)
2004-09-30 15:51:25 linux-kernel Re: FSCK message suppressed during booting? (2.6.9-rc2)
2004-09-30 00:15:57 linux-kernel FSCK message suppressed during booting? (2.6.9-rc2)
2004-01-20 11:25:22 linux-kernel Re: AIC7xxx kernel problem with 2.4.2[234] kernels
2003-08-13 02:01:56 linux-kernel Re: Badness in device_release at drivers/base/core.c:84
2003-08-06 17:18:16 linux-kernel Re: Badness in device_release at drivers/base/core.c:84
2003-08-05 16:12:42 linux-kernel Re: Badness in device_release at drivers/base/core.c:84
2003-06-24 16:13:36 linux-kernel Patch to (x86) 2.4.21 asm/system.h to suppress warning from GCC 3.3.
2003-06-24 16:08:34 linux-kernel Patch to (x86) 2.4.21 asm/system.h to suppress warning from GCC 3.3.
2003-06-22 18:35:58 linux-kernel Re: Warning messages during compilation of 2.4.21. (5 files)
2003-06-22 13:52:35 linux-kernel Re: Warning messages during compilation of 2.4.21. (5 files)
2003-06-21 19:46:47 linux-kernel Warning messages during compilation of 2.4.21. (5 files)
2003-05-26 20:39:43 linux-kernel Re: [RFR] a new SCSI driver
2003-02-14 23:17:28 linux-kernel Subtle kernel configuration tool problem. Support for viper. Hi, I know that kernel configuration tool(s) are undergoing chnage, but here is one anomaly I noticed. I have an ABIT K7G raid motherboard, and attach an ATA/IDE disk to its non-raid controller. This board uses AMD chipset. I am using the kernel 2.4.20. (I use Debian GNU/Linux, but upgrade the kernel on my own regularly.) I notied earlier that the dmesg showed the following message: VP_IDE: IDE controller on PCI bus 00 dev 39 VP_IDE: detected chipset, but driver not compiled in! VP_IDE: chipset revision 6 VP_IDE: not 100% native mode: will probe irqs later After seeing this, I realized that I didn't enable the viper support and so I made sure that I have enabled the VIPER support in make xconfig Then I recompiled and installed the kernel for next boot, etc. However, no matter how I tried (and a few times), the message lines still appeared. (Actually, I have enabled the viper support a few weeks ago in make xconfig, and was suprised to find the message again, and this time I investigated a little on my own.) I re-checked the produced .config and was surprised to find there were NO mention of the supposedly enabled AMD viper support flag(!?). Just being curious, I DISABLED the viper support and saved the configuration under a different name and compared the file to the original config file. They were IDENTICAL! (This was done under make xconfig) (At this stage, I probably reenabled the viper support under make xconfig. Also, I ran make oldconfig just to be sure my .config is in sane state with respect to 2.4.20. But there were not discernable output, and make oldconfig finished without prompting input. At the end is the history of commands which I ran during this investigation.) Now I wasn't quite sure what to do, but then I tried the different configuration method, namely: make menuconfig What was really strange, is that the AMD VIPER support was marked [*] and so the tools seem to think that I have enabled it, but why not the proper line in .config file? (Are user preferences stored somewhere else other than the .config file itself ?) Now I was not trusting the tool(s) at this time very much, there must be some internal consistency problem. So I ticked off the [*] mark and saved it (under make menuconfig). I compared it with the old config produced by xconfig. Then I realized that diff output had lots of marked comment lines (probably, somehow the lines inside were re-ordered by make menuconfig or make oldconfig?). Anyway, AMD viper support was not in. Since I have tikced the mark off, this was to be expected. THEN, I ticked the AMD viper support in make menuconfig, and finally I found the AMD viper support flag line in .config: CONFIG_BLK_DEV_AMD74XX=y The above story is very strange, but it happened. For people working to improve the kernel configuration tool(s), I hope this post provides a data point for problem(s), which might face the people trying to configure the kernel. To people's credit, I think this is the first time something like this happened with the kernel configuration in my use of Linux for the last few years. Just to be complete, here is the command I ran while I tried to track down the problem and made sure the AMD74XX support is in. 106 make xconfig 107 dmesg grep VIPER 108 dmesg | grep VIPER 109 dmesg | grep Viper 110 dmesg | grep viper 111 dmesg | VP_IDE 112 dmesg | grep VP_IDE 113 grep AM /usr/src/linux/.config 114 cp ./config ./config.saved 115 cp ./.config ./config.saved 116 make xconfig 117 ls -ltr 118 diff -cibw ./.config new-config 119 make oldconfig 120 make xconfig 121 diff -cibw .config config.saved 122 make menuconfig 123 ls -ltr 124 diff -cibw .config new-config 125 diff -cibw .config new-config | grep -v ^# 126 diff -cibw .config new-config | grep -v "^! #" 127 diff -cibw .config new-config | grep -v "^[!+] #" 128 diff -cibw .config new-config | grep -v "^[!+] #" | more 129 make menuconfig 130 pwd 131 history 132 diff -cibw .config new-config | grep -v "^[!+] #" | more 133 make clean; make dep; make bzImage; make modules; make modules_install 134 history PS: it could be that my .config file contained some crufts left over from much earlier releases (2.3.x, 2.2.y, 2.0.z) and this may explain the problem.
2002-07-18 02:05:15 linux-kernel Re: Q: boot time memory region recognition and clearing.
2002-07-14 15:35:32 linux-kernel Re: Q: boot time memory region recognition and clearing.
2002-07-13 23:24:57 linux-kernel Re: Q: boot time memory region recognition and clearing.
2002-07-13 14:16:59 linux-kernel Re: Q: boot time memory region recognition and clearing.
2002-07-13 10:05:50 linux-kernel Q: boot time memory region recognition and clearing.
2002-06-29 18:15:01 linux-kernel Re: 2.4.18-pre9, Iomega Jaz, PPA - endless loop in SCSI recoverythread
2001-04-24 01:15:19 linux-kernel Got a Kernel OOPS, and the problem with OOPS itself.
2001-04-23 01:45:55 linux-kernel xf86 server crash and VM problem(?)
2001-04-14 20:10:49 linux-kernel "uname -p" prints unknown for Athlon K7 optimized kernel?
2001-04-14 18:13:44 linux-kernel Re: Swap Corruption in 2.4.3 ?
2001-03-24 00:01:07 linux-kernel Re: Interesting post from the MC project to linux-kernel. :block while spinlock held...
2001-03-21 17:26:05 linux-kernel Interesting post from the MC project to linux-kernel. :block while spinlock held...
2001-03-17 02:09:21 linux-kernel Re: scsi_scan problem.
2001-03-16 16:54:55 linux-kernel Re: scsi_scan problem.
2001-03-04 21:33:07 linux-kernel Re: scsi vs ide performance on fsync's
2001-03-02 19:29:40 linux-kernel Found out why "sg" was loaded automagically. Re: devfs: "cd" device not showing up initially.
2001-02-20 21:27:53 linux-kernel Re: kernel/printk.c: increasing the buffer size to capture devfsd debug messages.
2001-02-20 17:30:33 linux-kernel kernel/printk.c: increasing the buffer size to capture devfsd debug messages.
2001-02-13 18:46:34 linux-kernel Re: Kernel panic: Ththththaats all folks
2001-02-12 02:35:54 linux-kernel Re: devfs: "cd" device not showing up initially. [Fwd: Scan past lun 7 in
2001-02-10 12:34:13 linux-kernel devfs: "cd" device not showing up initially. [Fwd: Scan past lun 7 in 2.4.0]
2001-02-05 16:15:33 linux-kernel Re: /usr/src/linux/scripts/ver_linux prints out incorrect info when "ls" is aliased.
2001-02-04 15:16:02 linux-kernel /usr/src/linux/scripts/ver_linux prints out incorrect info when "ls" is aliased.
2000-12-24 15:53:51 linux-kernel Re: IDE woes:linux and BIOS won't agree on C/H/S detection
2000-12-24 15:43:48 linux-kernel Re: IDE woes:linux and BIOS won't agree on C/H/S detection
2000-12-22 15:42:51 linux-kernel Re: IDE woes:linux and BIOS won't agree on C/H/S detection
2000-12-21 18:56:13 linux-kernel IDE woes:linux and BIOS won't agree on C/H/S detection
2000-11-25 01:25:42 linux-kernel 2.4.0-test-11: K7 compile error: `current' missing in string macro.