linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Gix, Brian" <brian.gix@intel.com>
To: "linux-bluetooth@vger.kernel.org"
	<linux-bluetooth@vger.kernel.org>,
	"Stotland, Inga" <inga.stotland@intel.com>
Subject: Re: [PATCH BlueZ] tools/mesh-cfgclient: Fix saving KR phase to config file
Date: Wed, 6 May 2020 15:13:15 +0000	[thread overview]
Message-ID: <7c21e1760366bdb20438ff3339c9df68657ac57e.camel@intel.com> (raw)
In-Reply-To: <20200505174303.6224-1-inga.stotland@intel.com>

Applied
On Tue, 2020-05-05 at 10:43 -0700, Inga Stotland wrote:
> This eliminates extra write of KR phase when loading keys
> from the configuration file on initialization.
> ---
>  tools/mesh-cfgclient.c | 4 ++--
>  tools/mesh/keys.c      | 4 ++--
>  tools/mesh/keys.h      | 2 +-
>  tools/mesh/mesh-db.c   | 2 +-
>  4 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/tools/mesh-cfgclient.c b/tools/mesh-cfgclient.c
> index 6db65cd49..d7318ffb7 100644
> --- a/tools/mesh-cfgclient.c
> +++ b/tools/mesh-cfgclient.c
> @@ -944,7 +944,7 @@ static void subnet_set_phase_reply(struct l_dbus_proxy *proxy,
>  	if (phase == KEY_REFRESH_PHASE_THREE)
>  		phase = KEY_REFRESH_PHASE_NONE;
>  
> -	keys_set_net_key_phase(net_idx, phase);
> +	keys_set_net_key_phase(net_idx, phase, true);
>  }
>  
>  static void subnet_set_phase_setup(struct l_dbus_message *msg, void *user_data)
> @@ -1014,7 +1014,7 @@ static void mgr_key_reply(struct l_dbus_proxy *proxy,
>  		keys_del_net_key(idx);
>  		mesh_db_net_key_del(idx);
>  	} else if (!strcmp("UpdateSubnet", method)) {
> -		keys_set_net_key_phase(idx, KEY_REFRESH_PHASE_ONE);
> +		keys_set_net_key_phase(idx, KEY_REFRESH_PHASE_ONE, true);
>  	} else if (!strcmp("DeleteAppKey", method)) {
>  		keys_del_app_key(idx);
>  		mesh_db_app_key_del(idx);
> diff --git a/tools/mesh/keys.c b/tools/mesh/keys.c
> index b7d36599a..ff3b23f61 100644
> --- a/tools/mesh/keys.c
> +++ b/tools/mesh/keys.c
> @@ -99,7 +99,7 @@ void keys_del_net_key(uint16_t idx)
>  	l_free(key);
>  }
>  
> -void keys_set_net_key_phase(uint16_t net_idx, uint8_t phase)
> +void keys_set_net_key_phase(uint16_t net_idx, uint8_t phase, bool save)
>  {
>  	struct net_key *key;
>  
> @@ -112,7 +112,7 @@ void keys_set_net_key_phase(uint16_t net_idx, uint8_t phase)
>  
>  	key->phase = phase;
>  
> -	if (!mesh_db_net_key_phase_set(net_idx, phase))
> +	if (save && !mesh_db_net_key_phase_set(net_idx, phase))
>  		bt_shell_printf("Failed to save updated KR phase\n");
>  }
>  
> diff --git a/tools/mesh/keys.h b/tools/mesh/keys.h
> index 3a90fa14b..fa51044ef 100644
> --- a/tools/mesh/keys.h
> +++ b/tools/mesh/keys.h
> @@ -20,7 +20,7 @@
>  
>  void keys_add_net_key(uint16_t net_idx);
>  void keys_del_net_key(uint16_t net_idx);
> -void keys_set_net_key_phase(uint16_t net_idx, uint8_t phase);
> +void keys_set_net_key_phase(uint16_t net_idx, uint8_t phase, bool save);
>  bool keys_get_net_key_phase(uint16_t net_idx, uint8_t *phase);
>  void keys_add_app_key(uint16_t net_idx, uint16_t app_idx);
>  void keys_del_app_key(uint16_t app_idx);
> diff --git a/tools/mesh/mesh-db.c b/tools/mesh/mesh-db.c
> index 3bd6b0d06..d39435ca0 100644
> --- a/tools/mesh/mesh-db.c
> +++ b/tools/mesh/mesh-db.c
> @@ -607,7 +607,7 @@ static bool load_keys(json_object *jobj)
>  		if (!get_int(jentry, "phase", &phase))
>  			return false;
>  
> -		keys_set_net_key_phase(net_idx, (uint8_t) phase);
> +		keys_set_net_key_phase(net_idx, (uint8_t) phase, false);
>  	}
>  
>  	json_object_object_get_ex(jobj, "appKeys", &jarray);

      reply	other threads:[~2020-05-06 15:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-05 17:43 [PATCH BlueZ] tools/mesh-cfgclient: Fix saving KR phase to config file Inga Stotland
2020-05-06 15:13 ` Gix, Brian [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7c21e1760366bdb20438ff3339c9df68657ac57e.camel@intel.com \
    --to=brian.gix@intel.com \
    --cc=inga.stotland@intel.com \
    --cc=linux-bluetooth@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).