Message ID | 20201117155703.30268-1-szymon.janc@codecoup.pl (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | device: Update cache only if content changed | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=386087 ---Test result--- ############################## Test: CheckPatch - PASS ############################## Test: CheckGitLint - PASS ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
Hi Szymon, On Tue, Nov 17, 2020 at 8:52 AM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=386087 > > ---Test result--- > > ############################## > Test: CheckPatch - PASS > > ############################## > Test: CheckGitLint - PASS > > ############################## > Test: CheckBuild - PASS > > ############################## > Test: MakeCheck - PASS > > > > --- > Regards, > Linux Bluetooth > Applied, thanks.
diff --git a/src/device.c b/src/device.c index 2800b276a..cf4226f42 100644 --- a/src/device.c +++ b/src/device.c @@ -509,7 +509,9 @@ void device_store_cached_name(struct btd_device *dev, const char *name) char d_addr[18]; GKeyFile *key_file; char *data; + char *data_old; gsize length = 0; + gsize length_old = 0; if (device_address_is_private(dev)) { DBG("Can't store name for private addressed device %s", @@ -524,11 +526,17 @@ void device_store_cached_name(struct btd_device *dev, const char *name) key_file = g_key_file_new(); g_key_file_load_from_file(key_file, filename, 0, NULL); + data_old = g_key_file_to_data(key_file, &length_old, NULL); + g_key_file_set_string(key_file, "General", "Name", name); data = g_key_file_to_data(key_file, &length, NULL); - g_file_set_contents(filename, data, length, NULL); + + if ((length != length_old) || (memcmp(data, data_old, length))) + g_file_set_contents(filename, data, length, NULL); + g_free(data); + g_free(data_old); g_key_file_free(key_file); }