lkml.org 
[lkml]   [2002]   [Sep]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    SubjectC99 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
    -
    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/
    \
     
     \ /
      Last update: 2005-03-22 13:29    [W:4.681 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site