Change in libosmocore[master]: gprs_ns2_fr.c: Skip extraneous FIONBIO

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Thu Dec 10 21:01:48 UTC 2020


laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/21665 )


Change subject: gprs_ns2_fr.c: Skip extraneous FIONBIO
......................................................................

gprs_ns2_fr.c: Skip extraneous FIONBIO

The socket is marked non-blocking inside osmo_fd_register(), there
is no need to do it twice.

Change-Id: I2068ce8280357b14970d01e5c86de5c59c933650
---
M src/gb/gprs_ns2_fr.c
1 file changed, 1 insertion(+), 9 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/65/21665/1

diff --git a/src/gb/gprs_ns2_fr.c b/src/gb/gprs_ns2_fr.c
index 8befe1c..c774e11 100644
--- a/src/gb/gprs_ns2_fr.c
+++ b/src/gb/gprs_ns2_fr.c
@@ -303,7 +303,7 @@
 {
 	struct sockaddr_ll addr;
 	int ifindex;
-	int fd, rc, on = 1;
+	int fd, rc;
 
 	ifindex = devname2ifindex(ifname);
 	if (ifindex < 0) {
@@ -322,14 +322,6 @@
 		return fd;
 	}
 
-	if (ioctl(fd, FIONBIO, (unsigned char *)&on) < 0) {
-		LOGP(DLGLOBAL, LOGL_ERROR,
-			"cannot set this socket unblocking: %s\n",
-			strerror(errno));
-		close(fd);
-		return -EINVAL;
-	}
-
 	rc = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
 	if (rc < 0) {
 		LOGP(DLNS, LOGL_ERROR, "Can not bind for interface %s\n", ifname);

-- 
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/21665
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2068ce8280357b14970d01e5c86de5c59c933650
Gerrit-Change-Number: 21665
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20201210/6098c07a/attachment.htm>


More information about the gerrit-log mailing list