mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
Add parenthesis to btop and ptob macros
Add missing parenthesis around btop and ptob macros to ensure operation ordering is preserved after expansion. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #660
This commit is contained in:
parent
ce319db57b
commit
0cefc9dbcd
@ -28,8 +28,8 @@
|
||||
#include <asm/page.h>
|
||||
|
||||
/* Pages to bytes and back */
|
||||
#define ptob(pages) (pages << PAGE_SHIFT)
|
||||
#define btop(bytes) (bytes >> PAGE_SHIFT)
|
||||
#define ptob(pages) ((pages) << PAGE_SHIFT)
|
||||
#define btop(bytes) ((bytes) >> PAGE_SHIFT)
|
||||
|
||||
#define MAXUID UINT32_MAX
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user