2002-09-28 17:51:07

by Art Haas

[permalink] [raw]
Subject: C99 designated initializer patch for fs/exportfs

Hi.

Here's a small patch for converting fs/exportfs/expfs.c to use
C99 designated initializers. The patch is against 2.5.39.

Art Haas


--- linux-2.5.39/fs/exportfs/expfs.c.old 2002-07-05 18:42:19.000000000 -0500
+++ linux-2.5.39/fs/exportfs/expfs.c 2002-09-28 10:36:22.000000000 -0500
@@ -514,12 +514,12 @@
}

struct export_operations export_op_default = {
- decode_fh: export_decode_fh,
- encode_fh: export_encode_fh,
+ .decode_fh = export_decode_fh,
+ .encode_fh = export_encode_fh,

- get_name: get_name,
- get_parent: get_parent,
- get_dentry: get_object,
+ .get_name = get_name,
+ .get_parent = get_parent,
+ .get_dentry = get_object,
};

EXPORT_SYMBOL(export_op_default);
--
They that can give up essential liberty to obtain a little temporary safety
deserve neither liberty nor safety.
-- Benjamin Franklin, Historical Review of Pennsylvania, 1759