patch-2.3.99-pre6 linux/net/atm/mpoa_caches.h

Next file: linux/net/atm/pvc.c
Previous file: linux/net/atm/mpoa_caches.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.99-pre5/linux/net/atm/mpoa_caches.h linux/net/atm/mpoa_caches.h
@@ -25,24 +25,27 @@
         struct   atm_vcc *shortcut;
         uint8_t  MPS_ctrl_ATM_addr[ATM_ESA_LEN];
         struct   in_ctrl_info ctrl_info;
+        atomic_t use;
 } in_cache_entry;
 
 struct in_cache_ops{
-        in_cache_entry *(*new_entry)(uint32_t dst_ip,
-				     struct mpoa_client *client);
-        in_cache_entry *(*search)(uint32_t dst_ip, struct mpoa_client *client);
-        in_cache_entry *(*search_with_mask)(uint32_t dst_ip, 
-					    struct mpoa_client *client,
-					    uint32_t mask);
-        in_cache_entry *(*search_by_vcc)(struct atm_vcc *vcc, 
-                                         struct mpoa_client *client);
-        int            (*cache_hit)(in_cache_entry *entry,
-                                    struct mpoa_client *client);
-        int            (*cache_remove)(in_cache_entry *delEntry,
-                                        struct mpoa_client *client );
-        void           (*clear_count)(struct mpoa_client *client);
-        void           (*check_resolving)(struct mpoa_client *client);
-        void           (*refresh)(struct mpoa_client *client);
+        in_cache_entry *(*add_entry)(uint32_t dst_ip,
+                                      struct mpoa_client *client);
+        in_cache_entry *(*get)(uint32_t dst_ip, struct mpoa_client *client);
+        in_cache_entry *(*get_with_mask)(uint32_t dst_ip, 
+					 struct mpoa_client *client,
+					 uint32_t mask);
+        in_cache_entry *(*get_by_vcc)(struct atm_vcc *vcc, 
+                                      struct mpoa_client *client);
+        void            (*put)(in_cache_entry *entry);
+        void            (*remove_entry)(in_cache_entry *delEntry,
+					struct mpoa_client *client );
+        int             (*cache_hit)(in_cache_entry *entry,
+                                     struct mpoa_client *client);
+        void            (*clear_count)(struct mpoa_client *client);
+        void            (*check_resolving)(struct mpoa_client *client);
+        void            (*refresh)(struct mpoa_client *client);
+        void            (*destroy_cache)(struct mpoa_client *mpc);
 };
 
 typedef struct eg_cache_entry{
@@ -55,17 +58,20 @@
         uint16_t             entry_state;
         uint32_t             latest_ip_addr;    /* The src IP address of the last packet */
         struct eg_ctrl_info  ctrl_info;
+        atomic_t             use;
 } eg_cache_entry;
 
 struct eg_cache_ops{
-        eg_cache_entry *(*new_entry)(struct k_message *msg, struct mpoa_client *client);
-        eg_cache_entry *(*search_by_cache_id)(uint32_t cache_id, struct mpoa_client *client);
-        eg_cache_entry *(*search_by_tag)(uint32_t cache_id, struct mpoa_client *client);
-        eg_cache_entry *(*search_by_vcc)(struct atm_vcc *vcc, struct mpoa_client *client);
-        eg_cache_entry *(*search_by_src_ip)(uint32_t ipaddr, struct mpoa_client *client);
-        int            (*cache_remove)(eg_cache_entry *entry, struct mpoa_client *client);
-        void           (*update)(eg_cache_entry *entry, uint16_t holding_time);
-        void           (*clear_expired)(struct mpoa_client *client);
+        eg_cache_entry *(*add_entry)(struct k_message *msg, struct mpoa_client *client);
+        eg_cache_entry *(*get_by_cache_id)(uint32_t cache_id, struct mpoa_client *client);
+        eg_cache_entry *(*get_by_tag)(uint32_t cache_id, struct mpoa_client *client);
+        eg_cache_entry *(*get_by_vcc)(struct atm_vcc *vcc, struct mpoa_client *client);
+        eg_cache_entry *(*get_by_src_ip)(uint32_t ipaddr, struct mpoa_client *client);
+        void            (*put)(eg_cache_entry *entry);
+        void            (*remove_entry)(eg_cache_entry *entry, struct mpoa_client *client);
+        void            (*update)(eg_cache_entry *entry, uint16_t holding_time);
+        void            (*clear_expired)(struct mpoa_client *client);
+        void            (*destroy_cache)(struct mpoa_client *mpc);
 };
 
 

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)