| To: | xfs@xxxxxxxxxxx |
|---|---|
| Subject: | [PATCH 12/12] xfsprogs: Drop a typedef in db/metadump.c |
| From: | Alex Elder <aelder@xxxxxxx> |
| Date: | Thu, 30 Dec 2010 14:42:59 -0600 |
| Reply-to: | aelder@xxxxxxx |
Use struct name_ent rather than its typedef, and just drop the
typedef entirely.
Signed-off-by: Alex Elder <aelder@xxxxxxx>
---
db/metadump.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: b/db/metadump.c
===================================================================
--- a/db/metadump.c
+++ b/db/metadump.c
@@ -337,12 +337,12 @@ copy_free_cnt_btree(
/* filename and extended attribute obfuscation routines */
-typedef struct name_ent {
+struct name_ent {
struct name_ent *next;
xfs_dahash_t hash;
int namelen;
uchar_t name[1];
-} name_ent_t;
+};
#define NAME_TABLE_SIZE 4096
@@ -352,7 +352,7 @@ static void
nametable_clear(void)
{
int i;
- name_ent_t *ent;
+ struct name_ent *ent;
for (i = 0; i < NAME_TABLE_SIZE; i++) {
while ((ent = nametable[i])) {
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 11/12] xfsprogs: fix up the nametable code in db/metadump.c, Alex Elder |
|---|---|
| Next by Date: | Re: [PATCH 1/5] percpu_counter: fix test in __percpu_counter_add_unless_lt(), Dave Chinner |
| Previous by Thread: | [PATCH 11/12] xfsprogs: fix up the nametable code in db/metadump.c, Alex Elder |
| Next by Thread: | Lái nhác nhá thÃnh viÃn háp thÆ subishop.com, sanpham-owner |
| Indexes: | [Date] [Thread] [Top] [All Lists] |