From e5a0b1ff69678fa8721239ab64bcbc0dcb8b2f74 Mon Sep 17 00:00:00 2001 From: James Park Date: Thu, 12 Apr 2018 10:11:17 -0700 Subject: [PATCH 1/2] Reduce the number of buffered packets when UE is in idle. FIXME: Need to be adjusted when the number of clbuf is increased. --- src/sgw/sgw_context.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sgw/sgw_context.h b/src/sgw/sgw_context.h index bd80bc19f..fb78dd7e4 100644 --- a/src/sgw/sgw_context.h +++ b/src/sgw/sgw_context.h @@ -109,7 +109,9 @@ typedef struct _sgw_bearer_t { /* Pkts which will be buffered in case of UE-IDLE */ c_uint32_t num_buffered_pkt; -#define MAX_NUM_BUFFER_PKT 512 + + /* FIXME: The value should be depdendant on the clbuf number. */ +#define MAX_NUM_BUFFER_PKT 10 pkbuf_t* buffered_pkts[MAX_NUM_BUFFER_PKT]; list_t tunnel_list; From d2aed88ac62a4cc3258124451b0e82137f5263fc Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Sat, 14 Apr 2018 15:04:04 +0900 Subject: [PATCH 2/2] Release 0.3.7 --- configure.ac | 2 +- debian/changelog | 12 ++++++++++++ webui/package-lock.json | 2 +- webui/package.json | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 3394571c8..b8bd49b74 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -AC_INIT([NextEPC], [0.3.6], [acetcom@gmail.com]) +AC_INIT([NextEPC], [0.3.7], [acetcom@gmail.com]) AC_SUBST(LIBVERSION) LIBVERSION=1:0:0 diff --git a/debian/changelog b/debian/changelog index 623ea7390..2d68b5fbc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +nextepc (0.3.7~artful) artful; urgency=medium + + * Buf Fixed + + -- Sukchan Lee Sat, 14 Apr 2018 15:02:05 +0900 + +nextepc (0.3.7~xenial) xenial; urgency=medium + + * Bug Fixed + + -- Sukchan Lee Sat, 14 Apr 2018 14:59:37 +0900 + nextepc (0.3.6~xenial) xenial; urgency=medium * Bug Fixed diff --git a/webui/package-lock.json b/webui/package-lock.json index 2ae0c2345..037b60fed 100644 --- a/webui/package-lock.json +++ b/webui/package-lock.json @@ -1,6 +1,6 @@ { "name": "nextepc", - "version": "0.3.6", + "version": "0.3.7", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/webui/package.json b/webui/package.json index 1dc958291..29dcbc20e 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "nextepc", - "version": "0.3.6", + "version": "0.3.7", "description": "NextEPC", "main": "index.js", "repository": "https://github.com/acetcom/nextepc",