You should also post a fragment of inode.c with the line number I quoted in the earlier mail.

(presumably fs/inode.c from 2.4.31)


It looks like this :

/**
 *      iput    - put an inode
 *      @inode: inode to put
 *
* Puts an inode, dropping its usage count. If the inode use count hits
 *      zero the inode is also then freed and may be destroyed.
 */

void iput(struct inode *inode)
{
        if (inode) {
                struct super_block *sb = inode->i_sb;
                struct super_operations *op = NULL;

                if (inode->i_state == I_CLEAR)
                        BUG();
                        ^^^^^^ line 1204


        Cheers ,

--
=============================================================================

Dimitris Zilaskos

Department of Physics @ Aristotle University of Thessaloniki , Greece
PGP key : http://tassadar.physics.auth.gr/~dzila/pgp_public_key.asc
          http://egnatia.ee.auth.gr/~dzila/pgp_public_key.asc
MD5sum  : de2bd8f73d545f0e4caf3096894ad83f  pgp_public_key.asc
=============================================================================
_______________________________________________
OpenAFS-info mailing list
[email protected]
https://lists.openafs.org/mailman/listinfo/openafs-info

Reply via email to