You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
net: mark read-only arrays as const
String literals are constant, and usually, we can also tag the array of pointers const too, moving it to the .rodata section. Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
db71789c01
commit
36cbd3dcc1
+2
-2
@@ -40,7 +40,7 @@ DEFINE_PER_CPU_SHARED_ALIGNED(struct rds_statistics, rds_stats);
|
||||
|
||||
/* :.,$s/unsigned long\>.*\<s_\(.*\);/"\1",/g */
|
||||
|
||||
static char *rds_stat_names[] = {
|
||||
static const char *const rds_stat_names[] = {
|
||||
"conn_reset",
|
||||
"recv_drop_bad_checksum",
|
||||
"recv_drop_old_seq",
|
||||
@@ -77,7 +77,7 @@ static char *rds_stat_names[] = {
|
||||
};
|
||||
|
||||
void rds_stats_info_copy(struct rds_info_iterator *iter,
|
||||
uint64_t *values, char **names, size_t nr)
|
||||
uint64_t *values, const char *const *names, size_t nr)
|
||||
{
|
||||
struct rds_info_counter ctr;
|
||||
size_t i;
|
||||
|
||||
Reference in New Issue
Block a user