vppinfra session: file platform independent private data

Type: improvement

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Id43b0b6db2b42ee5801236df0bd7f7225e1e081c
This commit is contained in:
Florin Coras
2020-09-24 11:58:28 -07:00
committed by Dave Barach
parent 9d211500a4
commit 6b6c10be05
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -102,15 +102,15 @@ typedef struct app_ns_api_handle_
/** socket index for files and clib file index for sockets */
u32 u_index;
};
uword as_uword;
u64 as_u64;
};
#define aah_app_ns_index l_index
#define aah_app_wrk_index l_index
#define aah_sock_index u_index
#define aah_file_index u_index
} __attribute__ ((aligned (sizeof (uword)))) app_ns_api_handle_t;
} __attribute__ ((aligned (sizeof (u64)))) app_ns_api_handle_t;
STATIC_ASSERT (sizeof (app_ns_api_handle_t) == sizeof (uword), "not uword");
STATIC_ASSERT (sizeof (app_ns_api_handle_t) == sizeof (u64), "not u64");
static inline clib_socket_t *
appns_sapi_alloc_socket (app_namespace_t * app_ns)
+2 -2
View File
@@ -1638,14 +1638,14 @@ sapi_sock_accept_ready (clib_file_t * scf)
cf.file_descriptor = ccs->fd;
/* File points to app namespace and socket */
handle.aah_sock_index = appns_sapi_socket_index (app_ns, ccs);
cf.private_data = handle.as_uword;
cf.private_data = handle.as_u64;
cf.description = format (0, "app sock conn fd: %d", ccs->fd);
/* Poll until we get an attach message. Socket points to file and
* application that owns the socket */
handle.aah_app_wrk_index = APP_INVALID_INDEX;
handle.aah_file_index = clib_file_add (&file_main, &cf);
ccs->private_data = handle.as_uword;
ccs->private_data = handle.as_u64;
return err;
+1 -1
View File
@@ -61,7 +61,7 @@ typedef struct clib_file
u32 polling_thread_index;
/* Data available for function's use. */
uword private_data;
u64 private_data;
/* Functions to be called when read/write data becomes ready. */
clib_file_function_t *read_function, *write_function, *error_function;