Skip to content

Commit 7c6a3a6

Browse files
lorenzo-stoakestorvalds
authored andcommitted
minmax: reduce min/max macro expansion in atomisp driver
Avoid unnecessary nested min()/max() which results in egregious macro expansion. Use clamp_t() as this introduces the least possible expansion, and turn the {s,u}DIGIT_FITTING() macros into inline functions to avoid the nested expansion. This resolves an issue with slackware 15.0 32-bit compilation as reported by Richard Narron. Presumably the min/max fixups would be difficult to backport, this patch should be easier and fix's Richard's problem in 5.15. Reported-by: Richard Narron <[email protected]> Reviewed-by: Hans de Goede <[email protected]> Closes: https://lore.kernel.org/all/[email protected]/ Fixes: 867046c ("minmax: relax check to allow comparison between unsigned arguments and signed constants") Cc: [email protected] Signed-off-by: Lorenzo Stoakes <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 8d8d276 commit 7c6a3a6

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

drivers/staging/media/atomisp/pci/sh_css_frac.h

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,24 @@
3232
#define uISP_VAL_MAX ((unsigned int)((1 << uISP_REG_BIT) - 1))
3333

3434
/* a:fraction bits for 16bit precision, b:fraction bits for ISP precision */
35-
#define sDIGIT_FITTING(v, a, b) \
36-
min_t(int, max_t(int, (((v) >> sSHIFT) >> max(sFRACTION_BITS_FITTING(a) - (b), 0)), \
37-
sISP_VAL_MIN), sISP_VAL_MAX)
38-
#define uDIGIT_FITTING(v, a, b) \
39-
min((unsigned int)max((unsigned)(((v) >> uSHIFT) \
40-
>> max((int)(uFRACTION_BITS_FITTING(a) - (b)), 0)), \
41-
uISP_VAL_MIN), uISP_VAL_MAX)
35+
static inline int sDIGIT_FITTING(int v, int a, int b)
36+
{
37+
int fit_shift = sFRACTION_BITS_FITTING(a) - b;
38+
39+
v >>= sSHIFT;
40+
v >>= fit_shift > 0 ? fit_shift : 0;
41+
42+
return clamp_t(int, v, sISP_VAL_MIN, sISP_VAL_MAX);
43+
}
44+
45+
static inline unsigned int uDIGIT_FITTING(unsigned int v, int a, int b)
46+
{
47+
int fit_shift = uFRACTION_BITS_FITTING(a) - b;
48+
49+
v >>= uSHIFT;
50+
v >>= fit_shift > 0 ? fit_shift : 0;
51+
52+
return clamp_t(unsigned int, v, uISP_VAL_MIN, uISP_VAL_MAX);
53+
}
4254

4355
#endif /* __SH_CSS_FRAC_H */

0 commit comments

Comments
 (0)