[inc/fdb_low_lvl] fix An error occurred in FDB_ALIGN(size, align) when align is not 2 to the nth power

This commit is contained in:
Darryzh 2023-08-17 16:52:22 +08:00
parent fab8a16180
commit b8d15a323c

View File

@ -29,7 +29,7 @@
/* Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
* would return 16.
*/
#define FDB_ALIGN(size, align) (((size) + (align) - 1) & ~((align) - 1))
#define FDB_ALIGN(size, align) ((size + align - 1) - ((size + align -1) % align))
/* align by write granularity */
#define FDB_WG_ALIGN(size) (FDB_ALIGN(size, (FDB_WRITE_GRAN + 7)/8))
/**