Re: [PATCH v2 2/2] stemodem: Use RTNL to create network interfaces.

2010-11-21 Thread Sjur Brændeland
Hi George.

> it looks as if two functions:
>
> caif_if_create/remove (struct conn_info *conn)
>
> do nothing but verify the return results of functions:
>
> caif_rtnl_create_interface/caif_rtnl_delete_interface
>
> declared in in  caif_rtnl.h
>
> Which means if you #include caif_rtnl.h in gprs-context.c
> create/delete_interface will be available directly without any wrappers
> and could make your code run a bit faster and easier to understand?
> Unless I missed something.

Thank you for reviewing this patch :-)
Yes, you are right concerning caif_if_create, I'll change this.
But caif_if_remove needs to stay as is,
it is called from g_slist_foreach and must have the list node as argument.

BTW you should take a look at http://ofono.org/wiki/ofono-etiquette.
Top-posting is not exactly popular on this list ;-)

Regards,
Sjur
___
ofono mailing list
ofono@ofono.org
http://lists.ofono.org/listinfo/ofono


Re: [PATCH v2 2/2] stemodem: Use RTNL to create network interfaces.

2010-11-21 Thread George Matveev
Hi Sjur,

it looks as if two functions:

caif_if_create/remove (struct conn_info *conn)

do nothing but verify the return results of functions:

caif_rtnl_create_interface/caif_rtnl_delete_interface

declared in in  caif_rtnl.h

Which means if you #include caif_rtnl.h in gprs-context.c
create/delete_interface will be available directly without any wrappers
and could make your code run a bit faster and easier to understand?
Unless I missed something.

Regards,
George

> From: Sjur Brændeland 
>
> ---
>  drivers/stemodem/gprs-context.c |   43
> ++-
>  1 files changed, 42 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/stemodem/gprs-context.c
> b/drivers/stemodem/gprs-context.c
> index 3ccda87..3859107 100644
> --- a/drivers/stemodem/gprs-context.c
> +++ b/drivers/stemodem/gprs-context.c
> @@ -47,6 +47,7 @@
>  #include "stemodem.h"
>  #include "caif_socket.h"
>  #include "if_caif.h"
> +#include "caif_rtnl.h"
>
>  #define MAX_CAIF_DEVICES 4
>  #define MAX_DNS 2
> @@ -172,12 +173,38 @@ static struct conn_info *conn_info_create(unsigned
> int channel_id)
>   return connection;
>  }
>
> +static void rtnl_callback(int ifindex, const char *ifname, void
> *user_data)
> +{
> + struct conn_info *conn = user_data;
> +
> + if (ifindex < 0) {
> + conn->created = FALSE;
> + ofono_error("Failed to create caif interface %s",
> + conn->interface);
> + return;
> + }
> +
> + strncpy(conn->interface, ifname, sizeof(conn->interface));
> + conn->ifindex = ifindex;
> + conn->created = TRUE;
> +}
> +
>  /*
>   * Creates a new IP interface for CAIF.
>   */
>  static gboolean caif_if_create(struct conn_info *conn)
>  {
> - return FALSE;
> + int err;
> +
> + err = caif_rtnl_create_interface(IFLA_CAIF_IPV4_CONNID,
> + conn->channel_id, FALSE,
> + rtnl_callback, conn);
> + if (err < 0) {
> + DBG("Failed to create IP interface for CAIF");
> + return FALSE;
> + }
> +
> + return TRUE;
>  }
>
>  /*
> @@ -185,6 +212,18 @@ static gboolean caif_if_create(struct conn_info
> *conn)
>   */
>  static void caif_if_remove(struct conn_info *conn)
>  {
> + if (!conn->created)
> + return;
> +
> + if (caif_rtnl_delete_interface(conn->ifindex) < 0) {
> + ofono_error("Failed to delete caif interface %s",
> + conn->interface);
> + return;
> + }
> +
> + DBG("removed CAIF interface ch:%d ifname:%s ifindex:%d\n",
> + conn->channel_id, conn->interface, conn->ifindex);
> + return;
>  }
>
>  static void ste_eppsd_down_cb(gboolean ok, GAtResult *result,
> @@ -571,10 +610,12 @@ static struct ofono_gprs_context_driver driver = {
>
>  void ste_gprs_context_init()
>  {
> + caif_rtnl_init();
>   ofono_gprs_context_driver_register(&driver);
>  }
>
>  void ste_gprs_context_exit()
>  {
> + caif_rtnl_exit();
>   ofono_gprs_context_driver_unregister(&driver);
>  }
> --
> 1.7.0.4
>
> ___
> ofono mailing list
> ofono@ofono.org
> http://lists.ofono.org/listinfo/ofono
>


___
ofono mailing list
ofono@ofono.org
http://lists.ofono.org/listinfo/ofono


[PATCH v2 2/2] stemodem: Use RTNL to create network interfaces.

2010-11-21 Thread Sjur Brændeland
From: Sjur Brændeland 

---
 drivers/stemodem/gprs-context.c |   43 ++-
 1 files changed, 42 insertions(+), 1 deletions(-)

diff --git a/drivers/stemodem/gprs-context.c b/drivers/stemodem/gprs-context.c
index 3ccda87..3859107 100644
--- a/drivers/stemodem/gprs-context.c
+++ b/drivers/stemodem/gprs-context.c
@@ -47,6 +47,7 @@
 #include "stemodem.h"
 #include "caif_socket.h"
 #include "if_caif.h"
+#include "caif_rtnl.h"
 
 #define MAX_CAIF_DEVICES 4
 #define MAX_DNS 2
@@ -172,12 +173,38 @@ static struct conn_info *conn_info_create(unsigned int 
channel_id)
return connection;
 }
 
+static void rtnl_callback(int ifindex, const char *ifname, void *user_data)
+{
+   struct conn_info *conn = user_data;
+
+   if (ifindex < 0) {
+   conn->created = FALSE;
+   ofono_error("Failed to create caif interface %s",
+   conn->interface);
+   return;
+   }
+
+   strncpy(conn->interface, ifname, sizeof(conn->interface));
+   conn->ifindex = ifindex;
+   conn->created = TRUE;
+}
+
 /*
  * Creates a new IP interface for CAIF.
  */
 static gboolean caif_if_create(struct conn_info *conn)
 {
-   return FALSE;
+   int err;
+
+   err = caif_rtnl_create_interface(IFLA_CAIF_IPV4_CONNID,
+   conn->channel_id, FALSE,
+   rtnl_callback, conn);
+   if (err < 0) {
+   DBG("Failed to create IP interface for CAIF");
+   return FALSE;
+   }
+
+   return TRUE;
 }
 
 /*
@@ -185,6 +212,18 @@ static gboolean caif_if_create(struct conn_info *conn)
  */
 static void caif_if_remove(struct conn_info *conn)
 {
+   if (!conn->created)
+   return;
+
+   if (caif_rtnl_delete_interface(conn->ifindex) < 0) {
+   ofono_error("Failed to delete caif interface %s",
+   conn->interface);
+   return;
+   }
+
+   DBG("removed CAIF interface ch:%d ifname:%s ifindex:%d\n",
+   conn->channel_id, conn->interface, conn->ifindex);
+   return;
 }
 
 static void ste_eppsd_down_cb(gboolean ok, GAtResult *result,
@@ -571,10 +610,12 @@ static struct ofono_gprs_context_driver driver = {
 
 void ste_gprs_context_init()
 {
+   caif_rtnl_init();
ofono_gprs_context_driver_register(&driver);
 }
 
 void ste_gprs_context_exit()
 {
+   caif_rtnl_exit();
ofono_gprs_context_driver_unregister(&driver);
 }
-- 
1.7.0.4

___
ofono mailing list
ofono@ofono.org
http://lists.ofono.org/listinfo/ofono