kernelnewbies.kernelnewbies.org archive mirror
 help / color / mirror / Atom feed
* Unable to understand a piece of code
@ 2019-05-20  0:07 Amit Kumar
  2019-05-20  1:23 ` Tobin C. Harding
  2019-05-22 17:57 ` Máté Eckl
  0 siblings, 2 replies; 4+ messages in thread
From: Amit Kumar @ 2019-05-20  0:07 UTC (permalink / raw)
  To: linux-newbie, Kernel Newbies

HI,

mm/slub.c: line 3973
int __kmem_cache_shrink(struct kmem_cache *s)
{
int node;
int i;
struct kmem_cache_node *n;
struct page *page;
struct page *t;
struct list_head discard;
struct list_head promote[SHRINK_PROMOTE_MAX];
unsigned long flags;
int ret = 0;

flush_all(s);
for_each_kmem_cache_node(s, node, n) {

How uninitialized variable node is being used in macro for_each_kmem_cache_node?

node is a local variable with no extern and not initialized.

mm/slab.h: line 490
#define for_each_kmem_cache_node(__s, __node, __n) \
for (__node = 0; __node < nr_node_ids; __node++) \
if ((__n = get_node(__s, __node)))

As we see for loop is based on node.

Thanks in advance.

Regards,
Amit Kumar

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-22 20:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-20  0:07 Unable to understand a piece of code Amit Kumar
2019-05-20  1:23 ` Tobin C. Harding
2019-05-20  3:33   ` Amit Kumar
2019-05-22 17:57 ` Máté Eckl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).