Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: gatt_pool: Supress -Waddress in EL_IN_POOL_VERIFY #19856

Closed

Conversation

ndreys
Copy link

@ndreys ndreys commented Jan 12, 2025

GCC13 will complain here with:

gatt_pool.c:165:69: warning: the comparison will always evaluate as 'true' for the address of 'chrc_tab' will never be NULL [-Waddress]

when CONFIG_ASSERT is set. Since the problem is harmless add warning supression pragmas to avoid build failures with -Werror.

@ndreys ndreys requested review from a team as code owners January 12, 2025 18:39
@github-actions github-actions bot added the changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. label Jan 12, 2025
@NordicBuilder
Copy link
Contributor

Thank you for your contribution!
It seems you are not a member of the nrfconnect GitHub organization. External contributions are handled as follows:
Large contributions, affecting multiple subsystems for example, may be rejected if they are complex, may introduce regressions due to lack of test coverage, or if they are not consistent with the architecture of nRF Connect SDK.
PRs will be run in our continuous integration (CI) test system.
If CI passes, PRs will be tagged for review and merged on successful completion of review. You may be asked to make some modifications to your contribution during review.
If CI fails, PRs may be rejected or may be tagged for review and rework.
PRs that become outdated due to other changes in the repository may be rejected or rework requested.
External contributions will be prioritized for review based on the relevance to current development efforts in nRF Connect SDK. Bug fix PRs will be prioritized.
You may raise issues or ask for help from our Technical Support team by visiting https://devzone.nordicsemi.com/.

Note: This comment is automatically posted and updated by the Contribs GitHub Action.

@NordicBuilder NordicBuilder added the external External contribution label Jan 12, 2025
GCC13 will complain here with:

gatt_pool.c:165:69: warning: the comparison will always evaluate as
'true' for the address of 'chrc_tab' will never be NULL [-Waddress]

when CONFIG_ASSERT is set. Since the problem is harmless add warning
supression pragmas to avoid build failures with -Werror.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
@ndreys ndreys force-pushed the suppress-warnings-in-e-in-pool-verify branch from 8309bd4 to e64d3c7 Compare January 12, 2025 18:57
Copy link
Contributor

@pdunaj pdunaj left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is source file and pools are defined buildtime.
If this is a real problem it can be resolved by modifying the way the check is done.

@ndreys
Copy link
Author

ndreys commented Jan 13, 2025

This is source file and pools are defined buildtime. If this is a real problem it can be resolved by modifying the way the check is done.

From reading the code E_IN_POOL_VERIFY is either used with a static array pointer or NULL, so I think the other way to deal with this would be to drop the != NULL check altogether since it does seem particularly valuable. Something like:

modified   subsys/bluetooth/gatt_pool.c
@@ -79,7 +79,6 @@ static struct bt_uuid const * const uuid_ccc = BT_UUID_GATT_CCC;
 
 #define EL_IN_POOL_VERIFY(pool, el)                                            \
 	do {                                                                   \
-		__ASSERT(pool != NULL, "Pool is uninitialized");               \
 		__ASSERT(((uint32_t)el >= (uint32_t)pool) &&                         \
 			     (((uint32_t)el) < (((uint32_t)pool) + sizeof(pool))),   \
 			 "Element does not belong to the pool");               \
@@ -163,8 +162,10 @@ static int chrc_get(struct bt_gatt_chrc **chrc)
 static void chrc_release(struct bt_gatt_chrc const *chrc)
 {
 	EL_IN_POOL_VERIFY(BT_GATT_CHRC_TAB, chrc);
+if CONFIG_BT_GATT_CHRC_POOL_SIZE != 0
 	atomic_clear_bit(chrc_pool.locks,
 			 ADDR_2_INDEX(BT_GATT_CHRC_TAB, chrc));
+#endif
 }

Thoughts? I'm low on any other ideas, but I'm open to suggestions.

Copy link

This pull request has been marked as stale because it has been open (more than) 30 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 7 days. Note, that you can always re-open a closed pull request at any time.

@github-actions github-actions bot added the Stale label Feb 13, 2025
@github-actions github-actions bot closed this Feb 21, 2025
@ndreys
Copy link
Author

ndreys commented Feb 21, 2025

Can someone from Nordic please take a look at this? I don't think any actions were required of me to make any progress here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. external External contribution Stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants