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-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081225182941.7fdadc83.akpm@linux-foundation.org>
Date:	Thu, 25 Dec 2008 18:29:41 -0800
From:	Andrew Morton <akpm@...ux-foundation.org>
To:	Mark Fasheh <mfasheh@...e.com>
Cc:	linux-kernel@...r.kernel.org, ocfs2-devel@....oracle.com,
	joel.becker@...cle.com, jack@...e.cz
Subject: Re: [PATCH 23/56] ocfs2: Implementation of local and global quota
 file handling

On Wed, 24 Dec 2008 16:29:23 -0800 Mark Fasheh <mfasheh@...e.com> wrote:

> > 
> > put_bh() is more efficient and modern, in the case where bh is known to
> > not be NULL.
> 
> How about __brelse()? Won't we lose the ref counting check if we go straight
> to put_bh()?
> 

That would work, if you value the debug check.

>
> ...
>
> > > +/* Write to quotafile (we know the transaction is already started and has
> > > + * enough credits) */
> > > +ssize_t ocfs2_quota_write(struct super_block *sb, int type,
> > > +			  const char *data, size_t len, loff_t off)
> > > +{
> > > +	struct mem_dqinfo *info = sb_dqinfo(sb, type);
> > > +	struct ocfs2_mem_dqinfo *oinfo = info->dqi_priv;
> > > +	struct inode *gqinode = oinfo->dqi_gqinode;
> > > +	int offset = off & (sb->s_blocksize - 1);
> > > +	sector_t blk = off >> sb->s_blocksize_bits;
> > 
> > does ocfs2 attempt to support CONFIG_LBD=n?
> 
> It should... What's the problem here?

Idle curiosity.  I noticed that the above expression could result in
truncation when writing a 64-bit value into a 32-bit one, which makes
one wonder whether this all works and is tested, etc.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ