login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2008
»
October
»
7
Re: [PATCH 11/39] ocfs2: Add extent tree operation for xattr value btrees
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Mark Fasheh
Subject:
Re: [PATCH 11/39] ocfs2: Add extent tree operation for xattr value btrees
Date: Tuesday, October 7, 2008 - 1:19 pm
On Wed, Oct 01, 2008 at 11:12:01PM -0700, Andrew Morton wrote:
quoted text
> > On Wed, 24 Sep 2008 15:00:52 -0700 Mark Fasheh <mfasheh@suse.com> wrote: > > + void *private; > > }; > > > > static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et, > > @@ -136,9 +137,50 @@ static struct ocfs2_extent_tree_operations ocfs2_dinode_et_ops = { > > .sanity_check = ocfs2_dinode_sanity_check, > > }; > > > > +static void ocfs2_xattr_value_set_last_eb_blk(struct ocfs2_extent_tree *et, > > + u64 blkno) > > +{ > > + struct ocfs2_xattr_value_root *xv = > > + (struct ocfs2_xattr_value_root *)et->private; > > unneeded and undesirable cast of void* > > > + xv->xr_last_eb_blk = cpu_to_le64(blkno); > > +} > > + > > +static u64 ocfs2_xattr_value_get_last_eb_blk(struct ocfs2_extent_tree *et) > > +{ > > + struct ocfs2_xattr_value_root *xv = > > + (struct ocfs2_xattr_value_root *) et->private; > > many etceteras.
Thanks, luckily though, it seems these got fixed later in the series :) --Mark -- Mark Fasheh --
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH 0/39] Ocfs2 updates for 2.6.28
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 01/39] ocfs2: POSIX file locks support
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 02/39] ocfs2: Track local alloc bits internally
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 03/39] ocfs2: throttle back local alloc when low on ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 04/39] ocfs2: track local alloc state via debugfs
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 05/39] ocfs2: Modify ocfs2_num_free_extents for fut ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 06/39] ocfs2: Use ocfs2_extent_list instead of ocfs ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 07/39] ocfs2: Abstract ocfs2_extent_tree in b-tree ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 08/39] ocfs2: Make high level btree extend code generic
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 09/39] ocfs2: Add the basic xattr disk layout in oc ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 10/39] ocfs2: Add helper function in uptodate.c for ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 11/39] ocfs2: Add extent tree operation for xattr v ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 12/39] ocfs2: reserve inline space for extended att ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 13/39] ocfs2: Add extended attribute support
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 14/39] ocfs2: Add xattr index tree operations
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 15/39] ocfs2: Add xattr bucket iteration for large ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 16/39] ocfs2: Add xattr lookup code xattr btrees
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 17/39] ocfs2: Optionally limit extent size in ocfs2 ...
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 18/39] ocfs2: Enable xattr set in index btree
, Mark Fasheh
, (Wed Sep 24, 3:00 pm)
[PATCH 19/39] ocfs2: Delete all xattr buckets during inode ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 20/39] ocfs2: Add incompatible flag for extended at ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 21/39] ocfs2: fix printk format warnings
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 22/39] ocfs2: Prefix the extent tree operations str ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 23/39] ocfs2: Prefix the ocfs2_extent_tree structure.
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 24/39] ocfs2: Make ocfs2_extent_tree get/put instea ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 25/39] ocfs2: Make 'private' into 'object' on ocfs2 ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 26/39] ocfs2: Provide the get_root_el() method to o ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 27/39] ocfs2: Use struct ocfs2_extent_tree in ocfs2 ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 28/39] ocfs2: Determine an extent tree's max_leaf_c ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 29/39] ocfs2: Create specific get_extent_tree funct ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 30/39] ocfs2: Add an insertion check to ocfs2_exten ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 31/39] ocfs2: Make ocfs2_extent_tree the first-clas ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 32/39] ocfs2: Comment struct ocfs2_extent_tree_oper ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 33/39] ocfs2: Change ocfs2_get_*_extent_tree() to o ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 34/39] ocfs2: bug-fix for journal extend in xattr.
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 35/39] ocfs2: Resolve deadlock in ocfs2_xattr_free_ ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 36/39] ocfs2: Limit inode allocation to 32bits.
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 37/39] ocfs2: Add the 'inode64' mount option.
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 38/39] ocfs2: Switch over to JBD2.
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
[PATCH 39/39] ocfs2: Add xattr mount option in ocfs2_show_ ...
, Mark Fasheh
, (Wed Sep 24, 3:01 pm)
Re: [PATCH 0/39] Ocfs2 updates for 2.6.28
, Tao Ma
, (Sat Sep 27, 10:16 pm)
Re: [PATCH 01/39] ocfs2: POSIX file locks support
, Andrew Morton
, (Wed Oct 1, 11:11 pm)
Re: [PATCH 03/39] ocfs2: throttle back local alloc when lo ...
, Andrew Morton
, (Wed Oct 1, 11:11 pm)
Re: [PATCH 04/39] ocfs2: track local alloc state via debugfs
, Andrew Morton
, (Wed Oct 1, 11:11 pm)
Re: [PATCH 10/39] ocfs2: Add helper function in uptodate.c ...
, Andrew Morton
, (Wed Oct 1, 11:11 pm)
Re: [PATCH 11/39] ocfs2: Add extent tree operation for xat ...
, Andrew Morton
, (Wed Oct 1, 11:12 pm)
Re: [PATCH 11/39] ocfs2: Add extent tree operation for xat ...
, Andrew Morton
, (Wed Oct 1, 11:12 pm)
Re: [PATCH 13/39] ocfs2: Add extended attribute support
, Andrew Morton
, (Wed Oct 1, 11:12 pm)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Christoph Hellwig
, (Thu Oct 2, 1:16 am)
Re: [PATCH 01/39] ocfs2: POSIX file locks support
, Mark Fasheh
, (Tue Oct 7, 1:09 pm)
Re: [PATCH 04/39] ocfs2: track local alloc state via debugfs
, Mark Fasheh
, (Tue Oct 7, 1:10 pm)
Re: [PATCH 10/39] ocfs2: Add helper function in uptodate.c ...
, Mark Fasheh
, (Tue Oct 7, 1:18 pm)
Re: [PATCH 11/39] ocfs2: Add extent tree operation for xat ...
, Mark Fasheh
, (Tue Oct 7, 1:19 pm)
Re: [PATCH 13/39] ocfs2: Add extended attribute support
, Mark Fasheh
, (Tue Oct 7, 1:22 pm)
Re: [PATCH 11/39] ocfs2: Add extent tree operation for xat ...
, Mark Fasheh
, (Tue Oct 7, 2:19 pm)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Mark Fasheh
, (Tue Oct 7, 3:08 pm)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Tiger Yang
, (Tue Oct 7, 6:56 pm)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Christoph Hellwig
, (Wed Oct 8, 6:16 am)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Christoph Hellwig
, (Wed Oct 8, 6:22 am)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Christoph Hellwig
, (Wed Oct 8, 6:34 am)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Tao Ma
, (Wed Oct 8, 7:04 am)
Re: [Ocfs2-devel] [PATCH 13/39] ocfs2: Add extended attrib ...
, Mark Fasheh
, (Wed Oct 8, 5:38 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg Kroah-Hartman
[PATCH 041/196] kobject: add kobject_init_and_add function
Lukas Hejtmanek
Re: Another libata error related to OCZ SSD
Greg Kroah-Hartman
[PATCH 023/196] MCP_UCB1200: Convert from class_device to device
Florian Fainelli
Re: System clock runs too fast after 2.6.27 -> 2.6.28.1 upgrade
Christoph Lameter
[patch 1/4] mmu_notifier: Core code
git
:
Johannes Schindelin
Re: [PATCH 1/2] Add strbuf_initf()
John Bito
[EGIT] Push to GitHub caused corruption
Jakub Narebski
Re: [PATCH 0/2] gitweb: patch view
Junio C Hamano
Re: [PATCH] When a remote is added but not fetched, tell the user.
Andy Parkins
Re: [RFC] Submodules in GIT
git-commits-head
:
Linux Kernel Mailing List
ahci: Workaround HW bug for SB600/700 SATA controller PMP support
Linux Kernel Mailing List
V4L/DVB (11086): au0828: rename macro for currently non-function VBI support
Linux Kernel Mailing List
ceph: client types
Linux Kernel Mailing List
ceph: on-wire types
Linux Kernel Mailing List
crypto: chainiv - Use kcrypto_wq instead of keventd_wq
linux-netdev
:
Andrew Morton
Re: [Bugme-new] [Bug 14969] New: b44: WOL does not work in suspended state
Giuseppe CAVALLARO
Re: [PATCH 03/13] stmmac: add the new Header file for stmmac platform data
Taku Izumi
[PATCH 3/3] ixgbe: add registers etc. printout code just before resetting adapters
Eric Dumazet
rps: some comments
Thomas Gleixner
Re: [RFC PATCH 02/12] On Tue, 23 Sep 2008, David Miller wrote:
openbsd-misc
:
Stephan Andreas
problems with login after xlock in OpenBSD release 4.7
pmc
Make A Change. Alcoholism and Drug Addiction Treatment
ropers
Re: what exactly is enc0?
Fuad NAHDI
Re: What does your environment look like?
Matthew Szudzik
Typo on OpenBSD 4.4 CD Set
Colocation donated by:
Syndicate