lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 31 Jul 2008 20:17:06 +0530
From:	"Rohit Sharma" <imreckless@...il.com>
To:	ext4 <linux-ext4@...r.kernel.org>
Subject: ext2_find_near

Hi all,

I was going through the function "ext2_find_near" in inode.c and could not
interpret the meaning of the last part of this code :

static ext2_fsblk_t ext2_find_near(struct inode *inode, Indirect *ind)
{
       struct ext2_inode_info *ei = EXT2_I(inode);
       __le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data;
       __le32 *p;
       ext2_fsblk_t bg_start;
       ext2_fsblk_t colour;

       /* Try to find previous block */
      for (p = ind->p - 1; p >= start; p--)
               if (*p)
                       return le32_to_cpu(*p);

       /* No such thing, so let's try location of indirect block */
      if (ind->bh)
               return ind->bh->b_blocknr;

       /*
        * It is going to be refered from inode itself? OK, just put it into
        * the same cylinder group then.
        */

       bg_start = ext2_group_first_block_no(inode->i_sb, ei->i_block_group);

       / * what does the code below do?? why its is using pid of
current process?? */

       colour = (current->pid % 16) *
                       (EXT2_BLOCKS_PER_GROUP(inode->i_sb) / 16);
      return bg_start + colour;
}


What I understand from it is that it has something to do with reducing
the chances of a concurrent allocation -- supposedly from a different
PID.

Can someone just explain a bit on this, what exactly is happening ?

Thanks,
Rohit Sharma.
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ