Lines Matching refs:old
54 #ifndef IPT_SO_GET_REVISION_MATCH /* Old kernel source. */
58 #ifndef IP6T_SO_GET_REVISION_MATCH /* Old kernel source. */
141 /* Third, the old options */
813 /* Assume only revision 0 support (old kernel) */
952 struct xtables_match **i, *old;
956 old = xtables_find_match(me->name, XTF_DURING_LOAD, NULL);
957 if (old) {
958 compare = xtables_match_prefer(old, me);
967 rn = (old->real_name != NULL) ? old->real_name : old->name;
969 compatible_match_revision(rn, old->revision))
977 /* Delete old one. */
978 for (i = &xtables_matches; *i!=old; i = &(*i)->next);
979 *i = old->next;
1049 struct xtables_target *old;
1053 old = xtables_find_target(me->name, XTF_DURING_LOAD);
1054 if (old) {
1057 compare = xtables_target_prefer(old, me);
1066 rn = (old->real_name != NULL) ? old->real_name : old->name;
1068 compatible_target_revision(rn, old->revision))
1076 /* Delete old one. */
1077 for (i = &xtables_targets; *i!=old; i = &(*i)->next);
1078 *i = old->next;