From 3163fa707b198ee6db5aa2bb03d569812bacdaa4 Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Fri, 23 Nov 2012 16:50:06 +0100 Subject: [PATCH] cache: reserve room in cache_ops to avoid breaking module ABI too frequently Signed-off-by: Thomas Graf --- include/netlink/cache-api.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/netlink/cache-api.h b/include/netlink/cache-api.h index f2111b9..b332415 100644 --- a/include/netlink/cache-api.h +++ b/include/netlink/cache-api.h @@ -252,6 +252,15 @@ struct nl_cache_ops int (*co_include_event)(struct nl_cache *cache, struct nl_object *obj, change_func_t change_cb, void *data); + void (*reserved_1)(void); + void (*reserved_2)(void); + void (*reserved_3)(void); + void (*reserved_4)(void); + void (*reserved_5)(void); + void (*reserved_6)(void); + void (*reserved_7)(void); + void (*reserved_8)(void); + /** Object operations */ struct nl_object_ops * co_obj_ops;