• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/kernel/

Lines Matching defs:vpe

54 #include <asm/vpe.h>
70 static char module_name[] = "vpe";
112 struct vpe {
115 /* (device) minor associated with this vpe */
143 /* tc's associated with this vpe */
146 /* The list of vpe's */
165 struct vpe *pvpe; /* parent VPE */
195 /* get the vpe associated with this minor */
196 static struct vpe *get_vpe(int minor)
198 struct vpe *res, *v;
235 /* allocate a vpe and associate it with this minor (or index) */
236 static struct vpe *alloc_vpe(int minor)
238 struct vpe *v;
240 if ((v = kzalloc(sizeof(struct vpe), GFP_KERNEL)) == NULL)
243 sizeof(struct vpe), (unsigned int)v);
276 static void release_vpe(struct vpe *v)
360 int vpe_send_interrupt(int vpe, int inter)
833 static int vpe_run(struct vpe * v)
962 static int find_vpe_symbols(struct vpe * v, Elf_Shdr * sechdrs,
1015 static int vpe_elfload(struct vpe * v)
1228 struct vpe *v;
1243 pr_warning("VPE loader: unable to get vpe\n");
1297 struct vpe *v;
1333 lose what has happened. So perhaps if garbage is sent to the vpe
1397 struct vpe *v;
1771 /* give me a vpe */
1775 struct vpe *v;
1777 /* find a vpe */
1790 int vpe_start(vpe_handle vpe, unsigned long start)
1792 struct vpe *v = vpe;
1803 int vpe_stop(vpe_handle vpe)
1805 struct vpe *v = vpe;
1825 int vpe_free(vpe_handle vpe)
1827 struct vpe *v = vpe;
1862 struct vpe *v;
1874 struct vpe *v;
1886 struct vpe *v;
1898 struct vpe *v;
1911 struct vpe *v;
1945 struct vpe *v;
1973 struct vpe *v;
2024 struct vpe *vpe = get_vpe(tclimit);
2027 list_for_each_entry(not, &vpe->notify, list) {
2031 release_progmem(vpe->load_addr);
2032 kfree(vpe->l_phsort);
2034 vpe_stop(vpe);
2035 vpe_free(vpe);
2043 struct vpe *vpe = get_vpe(tclimit);
2045 return sprintf(buf, "%d\n", vpe->ntcs);
2051 struct vpe *vpe = get_vpe(tclimit);
2062 vpe->ntcs = new;
2078 printk(KERN_DEBUG "Using kfree to free vpe class device at %x\n",
2084 .name = "vpe",
2096 struct vpe *v = NULL;
2194 /* add the tc to the list of this vpe's tc's. */
2221 t->pvpe = v; /* set the parent vpe */
2242 t->pvpe = get_vpe(0); /* set the parent vpe */
2282 struct vpe *v, *n;