.destroy        = connmark_tg_destroy,
                .target         = connmark_tg,
                .targetsize     = sizeof(struct xt_connmark_target_info),
+#ifdef CONFIG_COMPAT
+               .compatsize     = sizeof(struct compat_xt_connmark_target_info),
+               .compat_from_user = connmark_tg_compat_from_user,
+               .compat_to_user = connmark_tg_compat_to_user,
+#endif
                .me             = THIS_MODULE
        },
 };
 
                .match          = connmark_mt,
                .destroy        = connmark_mt_destroy,
                .matchsize      = sizeof(struct xt_connmark_info),
+#ifdef CONFIG_COMPAT
+               .compatsize     = sizeof(struct compat_xt_connmark_info),
+               .compat_from_user = connmark_mt_compat_from_user,
+               .compat_to_user = connmark_mt_compat_to_user,
+#endif
                .me             = THIS_MODULE
        },
 };
 
                .checkentry     = limit_mt_check,
                .match          = limit_mt,
                .matchsize      = sizeof(struct xt_rateinfo),
+#ifdef CONFIG_COMPAT
+               .compatsize     = sizeof(struct compat_xt_rateinfo),
+               .compat_from_user = limit_mt_compat_from_user,
+               .compat_to_user = limit_mt_compat_to_user,
+#endif
                .me             = THIS_MODULE,
        },
 };
 
                .checkentry     = mark_mt_check,
                .match          = mark_mt,
                .matchsize      = sizeof(struct xt_mark_info),
+#ifdef CONFIG_COMPAT
+               .compatsize     = sizeof(struct compat_xt_mark_info),
+               .compat_from_user = mark_mt_compat_from_user,
+               .compat_to_user = mark_mt_compat_to_user,
+#endif
                .me             = THIS_MODULE,
        },
 };