Jose Thomas | 2 Jan 2006 05:42

Kernel Panic 2.6.14.5 with xfs

Greetings,

With a vanilla kernel (2.6.14.5), I checked XFS
and rebuild the kernel; by following standard procedure;
Make menuconfig
Make bzImage
Make modules
Make modules_install
Make install.

All went on with out throwing any errors. 
Then I rebooted the system, but a kernel panic is occuring
The following are the message from the console;

==========================================================
Booting 'Red hat Enterprise Linux AS 92.6.14.5)'

root (hd0,0)
 Filesystem type is ext2fs, partition type 0x83
kernel /vmlinuz-2.6.14.5 ro root=LABEL=/ rhgb quit bigphysarea=102623
elevator=deadline
 [Linux-bzImage, setup=0x1e00, size=ox1d7b0d]
initrd /initrd-2.6.14.5.img
 [Linux-initrd  <at>  0x37f70000, 0x7f521 bytes]

Uncompressing Linux... Ok, booting the kernel.
ibm_acpi:ec object not found
ide0: I/O resource 0x1F0-0x1F7 not free.
ide0: ports already in use, skipping probe
Red Hat nash version 4.2.1.3 starting
(Continue reading)

Raz Ben-Jehuda(caro | 2 Jan 2006 10:39
Picon

xfs_rtcp

hello.
my name is raz.
i have mouted xfs volume with realtime extersion.
i have begin copying with xfs_rtcp.
looking at the iostat it looked that the writing is done in 300 KB/s.

why ?
can i speed it up ?
--
Raz

Allan Haywood | 2 Jan 2006 22:26

linux_xfs and spam problems

Does anyone know who is the administrator for this mailing list.

I am getting a TON of SPAM comming through linux-xfs.

Allan Haywood
Data Warehouse Systems Specialist
DATAllegro

[[HTML alternate version deleted]]

Shailendra Tripathi | 3 Jan 2006 05:59

Unexpected xfs_buf_item_init initialization and inflexible xfs_buf_item_zone

Hi,
	While changing the (current default) number of inode allocated  at 
once, I found two things a bit unexpected:

Section A:
----------
xfs_buf_item_init()

        /*
          * chunks is the number of XFS_BLI_CHUNK size pieces
          * the buffer can be divided into. Make sure not to
          * truncate any pieces.  map_size is the size of the
          * bitmap needed to describe the chunks of the buffer.
          */
         chunks = (int)((XFS_BUF_COUNT(bp) + (XFS_BLI_CHUNK - 1)) >> 
XFS_BLI_SHIFT);
         map_size = (int)((chunks + NBWORD) >> BIT_TO_WORD_SHIFT); ---> 2

	For 4096 block page (linux default), one map is required per page. 
Given this, line 2 appears odd. Instead, it should be

map_size = (int)((chunks + NBWORD -1) >> BIT_TO_WORD_SHIFT);

Also, chunks calculation may go well off the mark of the blocks are not 
page aligned. The code does not block alignment check. It only checks 
for sectoral alignment. For example, lets say I need  32768 
pb_buffer_length. However, the offset is not 4096 aligned. Lets say it 
starts at, 2048. Given this, _pagebuf_lookup_pages will prepare 8 + 1 pages.
page_count = page_buf_btoc(end) - page_buf_btoct(bp->pb_file_offset);

(Continue reading)

murrah boswell | 3 Jan 2006 07:15

Re: linux_xfs and spam problems


> Does anyone know who is the administrator for this mailing list.
>
> I am getting a TON of SPAM comming through linux-xfs.

same here!  not much response from technical xfs related questions (actually
a goose egg), but spam-a-lot.

in the process of converting all systems to ext3, so will be rid of both
soon.

murrah boswell

Lawanda | 3 Jan 2006 21:16

Effortless Perscription Service xx

Come Visit our new Online Ph <at> rmÁy and withhold up to 85%

Dozens of Meds to Purchase

http://uk.geocities.com/MarcellaEvans8755/

We are your Online Store for Substantial Savings

Picon

Problem with mixed Files

Hi,

We are using XFS on an Mailserver. We have a strange Problem which could
be tracked down to Filesystem or Hardware level.

The Problem:
Some of the stored mails get`s mixxed with various contents of the
Filesystem or other Mails. The Files "look" normal dumped with "od" - no
strange content. This Problem could be reproduced. If we send and
massive amount of Data slighly smaller than Blocksize some of the
generated Files gets mixxed. If i should guess, i would say that the
files get filled with content to fill the Inode.

One of this Files:

mail8:# cat 1136200241.M378338P21770V000000000000000FI2D87F6C0_0.*
Return-Path: <apache <at> 93660.t-wp.de>
X-Original-To: <private>
Delivered-To: <private>
Received: from localhost (localhost [127.0.0.1])
        by mail8.netdiscounter.de (Postfix) with ESMTP id 402E2407E6D
        for <private>; Mon,  2 Jan 2006
12:10:41 +0100 (CET)
Received: from node2.mail8.netdiscounter.de ([127.0.0.1])
 by localhost (mail8 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
 id 20751-02 for <private>;
 Mon,  2 Jan 2006 12:10:41 +0100 (CET)
Received-SPF: none (mail8.netdiscounter.de: 212.185.119.14 is neither
permitted nor denied by domain of 93660.t-wp.de)
client-ip=212.185.119.14; envelope-from=apache <at> 93660.t-wp.de;
(Continue reading)

Jose Thomas | 3 Jan 2006 12:41

RE: Kernel Panic 2.6.14.5 with xfs

Thankyou Shailendra for the response.
With further experiment, I went on to disable to ACPI in the kernel
config and rebuild and booted successfully with XFS (without ACPI).
Don't know how true it is, but many people are saying that DELL have an
error prone ACPI firware and not work well with Linux in many cases.

Any comments for discussion.

Thanks
Jose

-----Original Message-----
From: Shailendra Tripathi [mailto:stripathi <at> agami.com] 
Sent: Tuesday, January 03, 2006 11:58 AM
To: Jose Thomas
Subject: Re: Kernel Panic 2.6.14.5 with xfs

Hi Jose,
	Your configuration doe not appear to be saved. You are saying
that you have selected XFS, however boot messages is clearly showing
that the file system type is 0x83.
	Did you rebuilt the initrd image ?

 > root (hd0,0)
 >  Filesystem type is ext2fs, partition type 0x83  > kernel
/vmlinuz-2.6.14.5 ro root=LABEL=/ rhgb quit bigphysarea=102623  >
elevator=deadline -shailendra

Jose Thomas wrote:
> Greetings,
(Continue reading)

Eric Sandeen | 3 Jan 2006 17:31
Picon
Favicon

Re: linux_xfs and spam problems

murrah boswell wrote:
> 
>>Does anyone know who is the administrator for this mailing list.
>>
>>I am getting a TON of SPAM comming through linux-xfs.
> 
> 
> same here!  not much response from technical xfs related questions (actually
> a goose egg), 

No need for hyperbole...

> but spam-a-lot.

There were some problems with the machine hosting the list over last week, and 
people were off on vacation, so it didn't get immediate attention.  While we've 
resisted closing the list to non-subscribers in the past, we're talking about 
revisiting that decision.  It's just too hard to keep up with the spammers.

> in the process of converting all systems to ext3, so will be rid of both
> soon.

You may find that you've got a new set of problems ;-)  Nothing against ext3, 
but every filesystem will probably have it's own set of idiosyncracies to deal 
with.

-Eric

> murrah boswell
> 
(Continue reading)

徐羽 | 3 Jan 2006 22:01
Favicon

help with using xfs filesystem

Dear Sir, or Lady,

	  I am sorry to disturb you. 
      My operating system is Red Hat Linux 9. And the Linux kernel is kernel-2.4.20-8smp. I am trying to use xfs
filesystem. I have downloaded the "kernel-smp-2.4.20-20.9.XFS1.3.1.i686.rpm" and
"xfsprogs-2.5.6.src.tar.gz" packages. Can you do me the favor to tell me what and how I shall do, since I am
pretty new user of linux operating system?
     Your kind help are appreciated!

  Best wishes    			

       yours sincerely
                           Clark
        bitgreen <at> 163.com
          2006-01-04


Gmane