If that is the only unlock in the function, then it is probably
best to keep things as is. In general gotos are considered
better then multiple unlocks, but not having either is
even better.
Thanks for your quick feedback.
How do you think about to use the following code variant then?
ÂÂÂÂif (!ret)
ÂÂÂÂÂÂÂ ret = IIO_VAL_INT;
I believe the goto unlock variant and setting ret = IIO_VAL_INT;
directly above the unlock label variant is better,
I would prefer the approach above so that an extra goto statement
could also be avoided before.
because that way the error handling is consistent between all steps
and if another step is later added at the end, the last step will
not require modification.
Do any more contributors insist on such a code layout?
How long should I wait for corresponding feedback before another small
source code adjustment will be appropriate?
That is hard to say.
I am just curious on how we can achieve progress here.
I usually just do a new version when I've time,
This is generally fine.
seldomly someone complains I should have waited longer for feedback
(when I'm quite quick) but usually sending out a new version as soon
as you've time to work on a new version is best, since if you wait
you may then not have time for the entire next week or so, at least
that is my experience :)Â There is really no clear rule here.
I asked also because other well-known contributors showed strong
reactions for this change pattern (with the help of a script
for the semantic patch language).
Would you care for similar updates in source files like the following?
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/drivers/iio/accel/kxcjk-1013.c?id=1540d0106bcbc4e52013d759a0a0752ae7b4a09d#n760
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/drivers/iio/accel/stk8312.c?id=36ef71cae353f88fd6e095e2aaa3e5953af1685d#n432
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/drivers/iio/adc/palmas_gpadc.c?id=36ef71cae353f88fd6e095e2aaa3e5953af1685d#n304
Regards,
Markus