Attention is currently required from: tnt.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/dahdi-linux/+/39159?usp=email
to look at the new patch set (#3).
The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder
Change subject: Misc warning/build fixes for more recent kernels
......................................................................
Misc warning/build fixes for more recent kernels
Change-Id: I54e89040dfc6e21d23f620df407b6613397f7e45
Signed-off-by: Sylvain Munaut <tnt(a)246tNt.com>
---
M drivers/dahdi/dahdi-base.c
M drivers/dahdi/dahdi_dynamic_ethmf.c
M drivers/dahdi/wcaxx-base.c
M drivers/dahdi/wct4xxp/base.c
M drivers/dahdi/wctdm24xxp/base.c
M drivers/dahdi/wcte13xp-base.c
M drivers/dahdi/wcte43x-base.c
M drivers/dahdi/xpp/xbus-core.c
8 files changed, 15 insertions(+), 22 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/dahdi-linux refs/changes/59/39159/3
--
To view, visit https://gerrit.osmocom.org/c/dahdi-linux/+/39159?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: dahdi-linux
Gerrit-Branch: master
Gerrit-Change-Id: I54e89040dfc6e21d23f620df407b6613397f7e45
Gerrit-Change-Number: 39159
Gerrit-PatchSet: 3
Gerrit-Owner: tnt <tnt(a)246tNt.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: tnt <tnt(a)246tNt.com>
Attention is currently required from: tnt.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/dahdi-linux/+/39159?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder
Change subject: Misc warning/build fixes for more recent kernels
......................................................................
Misc warning/build fixes for more recent kernels
Change-Id: I54e89040dfc6e21d23f620df407b6613397f7e45
Signed-off-by: Sylvain Munaut <tnt(a)246tNt.com>
---
M drivers/dahdi/dahdi-base.c
M drivers/dahdi/wct4xxp/base.c
M drivers/dahdi/wctdm24xxp/base.c
M drivers/dahdi/xpp/xbus-core.c
4 files changed, 9 insertions(+), 14 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/dahdi-linux refs/changes/59/39159/2
--
To view, visit https://gerrit.osmocom.org/c/dahdi-linux/+/39159?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: dahdi-linux
Gerrit-Branch: master
Gerrit-Change-Id: I54e89040dfc6e21d23f620df407b6613397f7e45
Gerrit-Change-Number: 39159
Gerrit-PatchSet: 2
Gerrit-Owner: tnt <tnt(a)246tNt.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: tnt <tnt(a)246tNt.com>
Attention is currently required from: pespin.
osmith has posted comments on this change by pespin. ( https://gerrit.osmocom.org/c/osmo-pcap/+/39157?usp=email )
Change subject: pcap-server: Move stats to its own file
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcap/+/39157?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-pcap
Gerrit-Branch: master
Gerrit-Change-Id: I71734a4c78e4d3109947ff5e69c3a382a7908218
Gerrit-Change-Number: 39157
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 17 Dec 2024 10:48:51 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-pcap/+/39149?usp=email )
Change subject: pcap-server: Take into account PDU len when calculating pcap max-size
......................................................................
pcap-server: Take into account PDU len when calculating pcap max-size
We never want to overpass the configured max-size.
Change-Id: I666830fbbc23ce34007d45bbf8c7a13a1f2a93ea
---
M src/osmo_server_network.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
laforge: Looks good to me, but someone else must approve
osmith: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/osmo_server_network.c b/src/osmo_server_network.c
index b566bd2..41d0b3f 100644
--- a/src/osmo_server_network.c
+++ b/src/osmo_server_network.c
@@ -234,7 +234,7 @@
}
off_t cur = lseek(conn->local_fd, 0, SEEK_CUR);
- if (cur > conn->server->max_size) {
+ if (cur + data->len > conn->server->max_size) {
LOGP(DSERVER, LOGL_NOTICE, "Rolling over file for %s\n", conn->name);
restart_pcap(conn);
} else if (conn->last_write.tm_mday != tm->tm_mday ||
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcap/+/39149?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-pcap
Gerrit-Branch: master
Gerrit-Change-Id: I666830fbbc23ce34007d45bbf8c7a13a1f2a93ea
Gerrit-Change-Number: 39149
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>