Searched refs:vccs (Results 1 - 3 of 3) sorted by relevance

/linux-master/include/net/
H A Datmclip.h39 struct clip_vcc *vccs; /* active VCCs; NULL if resolution is member in struct:atmarp_entry
/linux-master/net/atm/
H A Dclip.c81 clip_vcc->next = entry->vccs;
82 entry->vccs = clip_vcc;
97 for (walk = &entry->vccs; *walk; walk = &(*walk)->next)
105 if (entry->vccs)
128 for (cv = entry->vccs; cv; cv = cv->next) {
138 if (entry->vccs || time_before(jiffies, entry->expires))
304 entry->vccs = NULL;
361 if (!entry->vccs) {
375 pr_debug("neigh %p, vccs %p\n", entry, entry->vccs);
[all...]
/linux-master/drivers/atm/
H A Dlanai.c223 * direction. To make it weirder, there can even be 0-way vccs
271 struct lanai_vcc **vccs; member in struct:lanai_dev
273 int nbound; /* number of bound vccs */
1443 lanai->vccs = (struct lanai_vcc **) get_zeroed_page(GFP_KERNEL);
1444 return (lanai->vccs == NULL) ? -ENOMEM : 0;
1447 lanai->vccs = vzalloc(bytes);
1448 if (unlikely(lanai->vccs == NULL))
1457 free_page((unsigned long) lanai->vccs);
1459 vfree(lanai->vccs);
1538 lanai->vccs[lvc
[all...]

Completed in 139 milliseconds