• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/pmgr/

Lines Matching refs:mnode_obj

377 	struct cmm_mnode *mnode_obj = NULL;
396 mnode_obj =
398 while (mnode_obj) {
399 if ((u32) buf_pa == mnode_obj->dw_pa) {
402 (struct list_head *)mnode_obj);
404 add_to_free_list(allocator, mnode_obj);
409 mnode_obj = (struct cmm_mnode *)
411 (struct list_head *)mnode_obj);
454 struct cmm_mnode *mnode_obj = NULL;
489 mnode_obj = (struct cmm_mnode *)
492 while (mnode_obj) {
497 mnode_obj = (struct cmm_mnode *)
499 (struct list_head *)mnode_obj);
691 struct cmm_mnode *mnode_obj = NULL;
697 mnode_obj = (struct cmm_mnode *)lst_first(psma->free_list_head);
698 while (mnode_obj) {
702 mnode_obj);
704 (struct list_head *)mnode_obj);
705 kfree((void *)mnode_obj);
707 mnode_obj = next_node;
711 mnode_obj =
713 while (mnode_obj) {
717 mnode_obj);
719 (struct list_head *)mnode_obj);
720 kfree((void *)mnode_obj);
722 mnode_obj = next_node;
809 struct cmm_mnode *mnode_obj = (struct cmm_mnode *)
811 while (mnode_obj) {
812 if (usize <= (u32) mnode_obj->ul_size) {
814 (struct list_head *)mnode_obj);
815 return mnode_obj;
818 mnode_obj = (struct cmm_mnode *)
820 (struct list_head *)mnode_obj);
836 struct cmm_mnode *mnode_obj;
844 mnode_obj = (struct cmm_mnode *)lst_first(allocator->free_list_head);
845 while (mnode_obj) {
846 if (dw_this_pa == NEXT_PA(mnode_obj)) {
848 node_prev = mnode_obj;
849 } else if (dw_next_pa == mnode_obj->dw_pa) {
850 node_next = mnode_obj;
854 mnode_obj = (struct cmm_mnode *)
856 (struct list_head *)mnode_obj);
885 mnode_obj = (struct cmm_mnode *)lst_first(allocator->free_list_head);
886 while (mnode_obj) {
887 if (pnode->ul_size <= mnode_obj->ul_size)
891 mnode_obj =
893 (struct list_head *)mnode_obj);
895 /* if mnode_obj is NULL then add our pnode to the end of the freelist */
896 if (mnode_obj == NULL) {
903 (struct list_head *)mnode_obj);