mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
powerpc: Add const qual to local_read() parameter
A patch in net-next triggered a compile error on powerpc:
include/linux/u64_stats_sync.h: In function 'u64_stats_read':
include/asm-generic/local64.h:30:37: warning: passing argument 1 of 'local_read' discards 'const' qualifier from pointer target type
This seems reasonable to relax powerpc local_read() requirements.
Fixes: 316580b69d
("u64_stats: provide u64_stats_t type")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: kbuild test robot <lkp@intel.com>
Acked-by: Michael Ellerman <mpe@ellerman.id.au>
Tested-by: Stephen Rothwell <sfr@canb.auug.org.au> # build only
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
This commit is contained in:
parent
c98dfcd306
commit
c392bccf2c
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ typedef struct
|
|||
|
||||
#define LOCAL_INIT(i) { (i) }
|
||||
|
||||
static __inline__ long local_read(local_t *l)
|
||||
static __inline__ long local_read(const local_t *l)
|
||||
{
|
||||
return READ_ONCE(l->v);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue