• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/mips/kernel/

Lines Matching defs:vpe

55 #include <asm/vpe.h>
67 static char module_name[] = "vpe";
102 struct vpe {
105 /* (device) minor associated with this vpe */
118 /* tc's associated with this vpe */
121 /* The list of vpe's */
136 struct vpe *pvpe;
157 /* static __attribute_used__ void dump_vpe(struct vpe * v); */
160 /* get the vpe associated with this minor */
161 struct vpe *get_vpe(int minor)
163 struct vpe *v;
176 /* get the vpe associated with this minor */
201 /* allocate a vpe and associate it with this minor (or index) */
202 struct vpe *alloc_vpe(int minor)
204 struct vpe *v;
206 if ((v = kzalloc(sizeof(struct vpe), GFP_KERNEL)) == NULL) {
236 void release_vpe(struct vpe *v)
701 static int vpe_run(struct vpe * v)
810 static int find_vpe_symbols(struct vpe * v, Elf_Shdr * sechdrs,
838 static int vpe_elfload(struct vpe * v)
1027 __attribute_used__ void dump_vpe(struct vpe * v)
1083 struct vpe *v;
1093 printk(KERN_WARNING "VPE loader: unable to get vpe\n");
1143 struct vpe *v;
1167 loose what has happened. So perhaps if garbage is sent to the vpe
1185 struct vpe *v;
1218 /* give me a vpe */
1222 struct vpe *v;
1224 /* find a vpe */
1237 int vpe_start(vpe_handle vpe, unsigned long start)
1239 struct vpe *v = vpe;
1248 int vpe_stop(vpe_handle vpe)
1250 struct vpe *v = vpe;
1270 int vpe_free(vpe_handle vpe)
1272 struct vpe *v = vpe;
1304 struct vpe *v;
1316 struct vpe *v;
1328 struct vpe *v;
1340 struct vpe *v;
1353 struct vpe *v;
1374 struct vpe *v = NULL;
1421 /* add the tc to the list of this vpe's tc's. */
1448 t->pvpe = v; /* set the parent vpe */
1469 t->pvpe = get_vpe(0); /* set the parent vpe */
1499 struct vpe *v, *n;