Home
last modified time | relevance | path

Searched refs:ed (Results 1 – 25 of 187) sorted by relevance

12345678

/linux-6.3-rc2/drivers/usb/host/
A Dohci-q.c149 ed, ed->branch, ed->load, ed->interval); in periodic_link()
251 branch, ed->interval, ed->load); in ed_schedule()
293 ed, ed->branch, ed->load, ed->interval); in periodic_unlink()
347 ed->ed_prev->ed_next = ed->ed_next; in ed_deschedule()
407 struct ed *ed; in ed_get() local
549 td->ed = urb_priv->ed; in td_fill()
837 struct ed *ed = td->ed; in ed_halted() local
902 struct ed *ed; in add_to_done_list() local
908 ed = td->ed; in add_to_done_list()
978 struct ed *ed, **last; in finish_unlinks() local
[all …]
A Dfhci-q.c58 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number) in fhci_add_tds_to_ed() argument
70 static struct td *peek_td_from_ed(struct ed *ed) in peek_td_from_ed() argument
107 struct td *fhci_remove_td_from_ed(struct ed *ed) in fhci_remove_td_from_ed() argument
117 ed->td_head = list_entry(ed->td_list.next, struct td, in fhci_remove_td_from_ed()
144 td = ed->td_head; in fhci_move_td_from_ed_to_done_list()
149 ed->td_head = list_entry(ed->td_list.next, struct td, node); in fhci_move_td_from_ed_to_done_list()
151 ed->td_head = NULL; in fhci_move_td_from_ed_to_done_list()
165 struct ed *ed = urb_priv->ed; in free_urb_priv() local
174 ed->td_head = list_entry(ed->td_list.next, struct td, node); in free_urb_priv()
216 struct ed *ed = td->ed; in fhci_done_td() local
[all …]
A Dfhci-mem.c30 static void init_ed(struct ed *ed) in init_ed() argument
32 memset(ed, 0, sizeof(*ed)); in init_ed()
63 struct ed *ed; in fhci_get_empty_ed() local
66 ed = list_entry(fhci->empty_eds.next, struct ed, node); in fhci_get_empty_ed()
69 ed = kmalloc(sizeof(*ed), GFP_ATOMIC); in fhci_get_empty_ed()
70 if (!ed) in fhci_get_empty_ed()
73 init_ed(ed); in fhci_get_empty_ed()
76 return ed; in fhci_get_empty_ed()
81 init_ed(ed); in fhci_recycle_empty_ed()
86 struct urb_priv *urb_priv, struct ed *ed, u16 index, in fhci_td_fill() argument
[all …]
A Dfhci-sched.c44 struct ed *ed; in fhci_transaction_confirm() local
61 ed = td->ed; in fhci_transaction_confirm()
63 if (ed->td_list.next->next != &ed->td_list) { in fhci_transaction_confirm()
240 ed->ep_addr, ed->mode, ed->speed, td->toggle)) { in add_packet()
279 struct ed *ed; in scan_ed_list() local
634 struct ed *ed; in process_done_list() local
647 ed = td->ed; in process_done_list()
699 struct ed *ed = urb->ep->hcpriv; in fhci_queue_urb() local
732 ed->speed, ed->max_pkt_size); in fhci_queue_urb()
738 urb->start_frame = ed->td_head ? ed->next_iso : in fhci_queue_urb()
[all …]
A Dohci-mem.c55 sizeof (struct ed), in ohci_mem_init()
133 static struct ed *
137 struct ed *ed; in ed_alloc() local
142 sizeof(*ed), &dma, 16); in ed_alloc()
145 if (ed) { in ed_alloc()
146 INIT_LIST_HEAD (&ed->td_list); in ed_alloc()
147 ed->dma = dma; in ed_alloc()
149 return ed; in ed_alloc()
153 ed_free (struct ohci_hcd *hc, struct ed *ed) in ed_free() argument
159 sizeof(*ed)); in ed_free()
[all …]
A Dohci-hcd.c153 struct ed *ed; in ohci_urb_enqueue() local
162 if (! ed) in ohci_urb_enqueue()
198 urb_priv->ed = ed; in ohci_urb_enqueue()
251 ed->last_iso = frame + ed->interval * (size - 1); in ohci_urb_enqueue()
255 u16 frame = ed->last_iso + ed->interval; in ohci_urb_enqueue()
352 struct ed *ed = ep->hcpriv; in ohci_endpoint_disable() local
358 if (!ed) in ohci_endpoint_disable()
392 ed, ep->desc.bEndpointAddress, ed->state, in ohci_endpoint_disable()
753 struct ed *ed; in io_watchdog_func() local
1045 struct ed *ed = priv->ed; in ohci_restart() local
[all …]
A Dohci-dbg.c313 const struct ed *ed, int verbose) in ohci_dump_ed() argument
320 ed, ed->state, edstring (ed->type), in ohci_dump_ed()
404 if (!ed) in show_list()
409 ed = ed->ed_prev; in show_list()
412 while (ed) { in show_list()
420 ed, in show_list()
460 ed = ed->ed_next; in show_list()
489 struct ed **seen, *ed; in fill_periodic_buffer() local
512 if (!ed) in fill_periodic_buffer()
521 ed->interval, ed); in fill_periodic_buffer()
[all …]
A Dfhci.h323 struct ed { struct
349 struct ed *ed; /* a handle to the corresponding ED */ argument
391 struct ed *ed; member
515 void fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed);
516 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci);
518 struct urb_priv *urb_priv, struct ed *ed, u16 index,
521 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number);
565 struct td *fhci_remove_td_from_ed(struct ed *ed);
567 void fhci_move_td_from_ed_to_done_list(struct fhci_usb *usb, struct ed *ed);
572 void fhci_del_ed_list(struct fhci_hcd *fhci, struct ed *ed);
A Dfhci-hcd.c169 struct ed *ed; in fhci_mem_free() local
170 struct ed *next_ed; in fhci_mem_free()
175 list_del(&ed->node); in fhci_mem_free()
176 kfree(ed); in fhci_mem_free()
225 struct ed *ed; in fhci_mem_init() local
227 ed = kmalloc(sizeof(*ed), GFP_KERNEL); in fhci_mem_init()
228 if (!ed) in fhci_mem_init()
510 struct ed *ed; in fhci_endpoint_disable() local
515 ed = ep->hcpriv; in fhci_endpoint_disable()
516 if (ed) { in fhci_endpoint_disable()
[all …]
A Dohci.h26 struct ed { struct
48 struct ed *ed_next; /* on schedule or rm_list */ argument
49 struct ed *ed_prev; /* for non-interrupt EDs */ argument
75 #define OKAY_TO_TAKEBACK(ohci, ed) \ argument
76 ((int) (ohci->wdh_cnt - ed->takeback_wdh_cnt) >= 0)
131 struct ed *ed; member
336 struct ed *ed; member
378 struct ed *ed_rm_list; /* to be removed */
380 struct ed *ed_bulktail; /* last in bulk list */
381 struct ed *ed_controltail; /* last in ctrl list */
[all …]
A Dohci-hub.c143 static inline struct ed *find_head (struct ed *ed) in find_head() argument
146 while (ed->ed_prev) in find_head()
147 ed = ed->ed_prev; in find_head()
148 return ed; in find_head()
/linux-6.3-rc2/drivers/edac/
A Docteon_edac-pc.c30 struct edac_device_ctl_info *ed; member
57 edac_device_printk(p->ed, KERN_ERR, in co_cache_error_event()
65 edac_device_printk(p->ed, KERN_ERR, in co_cache_error_event()
97 if (!p->ed) in co_cache_error_probe()
100 p->ed->dev = &pdev->dev; in co_cache_error_probe()
102 p->ed->dev_name = dev_name(&pdev->dev); in co_cache_error_probe()
104 p->ed->mod_name = "octeon-cpu"; in co_cache_error_probe()
105 p->ed->ctl_name = "cache"; in co_cache_error_probe()
107 if (edac_device_add_device(p->ed)) { in co_cache_error_probe()
117 edac_device_free_ctl_info(p->ed); in co_cache_error_probe()
[all …]
/linux-6.3-rc2/drivers/net/ethernet/fungible/funeth/
A Dfuneth_main.c1188 if (ed->num_vports) in fun_init_vports()
1191 ed->vport_info = kvcalloc(n, sizeof(*ed->vport_info), GFP_KERNEL); in fun_init_vports()
1194 ed->num_vports = n; in fun_init_vports()
1202 ed->num_vports = 0; in fun_free_vports()
1208 if (!ed->vport_info || vport >= ed->num_vports) in fun_get_vport()
1848 ed->netdevs = kcalloc(nports, sizeof(*ed->netdevs), GFP_KERNEL); in fun_create_ports()
1849 if (!ed->netdevs) in fun_create_ports()
1866 ed->num_ports = 0; in fun_create_ports()
1879 ed->num_ports = 0; in fun_destroy_ports()
1955 if (ed->num_ports) in fun_service_cb()
[all …]
/linux-6.3-rc2/drivers/soc/fsl/dpio/
A Ddpio-service.c463 struct qbman_eq_desc ed; in dpaa2_io_service_enqueue_fq() local
469 qbman_eq_desc_clear(&ed); in dpaa2_io_service_enqueue_fq()
471 qbman_eq_desc_set_fq(&ed, fqid); in dpaa2_io_service_enqueue_fq()
493 struct qbman_eq_desc ed; in dpaa2_io_service_enqueue_multiple_fq() local
499 qbman_eq_desc_clear(&ed); in dpaa2_io_service_enqueue_multiple_fq()
523 struct qbman_eq_desc *ed; in dpaa2_io_service_enqueue_multiple_desc_fq() local
527 if (!ed) in dpaa2_io_service_enqueue_multiple_desc_fq()
537 qbman_eq_desc_clear(&ed[i]); in dpaa2_io_service_enqueue_multiple_desc_fq()
544 kfree(ed); in dpaa2_io_service_enqueue_multiple_desc_fq()
564 struct qbman_eq_desc ed; in dpaa2_io_service_enqueue_qd() local
[all …]
/linux-6.3-rc2/Documentation/translations/zh_CN/mm/damon/
A Ddesign.rst58 <uppermost mmap()-ed region>
59 (small mmap()-ed regions and munmap()-ed regions)
60 <lowermost mmap()-ed region>
/linux-6.3-rc2/Documentation/ABI/testing/
A Dsysfs-block-aoe4 Contact: Ed L. Cashin <ed.cashin@acm.org>
12 Contact: Ed L. Cashin <ed.cashin@acm.org>
21 Contact: Ed L. Cashin <ed.cashin@acm.org>
35 Contact: Ed L. Cashin <ed.cashin@acm.org>
42 Contact: Ed L. Cashin <ed.cashin@acm.org>
/linux-6.3-rc2/Documentation/translations/zh_CN/devicetree/
A Doverlay-notes.rst128 知器被调用后,包含覆盖层的内存将被kfree()ed。请注意,即使OF_OVERLAY_POST_REMOVE
129 的通知器返回错误,内存也会被kfree()ed
/linux-6.3-rc2/Documentation/translations/it_IT/doc-guide/
A Dkernel-doc.rst25 funzioni ed i tipi di dato con i loro relativi collegamenti. Le descrizioni
26 vengono filtrare per cercare i riferimenti ed i marcatori.
43 dei sorgenti. Quest'ultima raccomandazione ha una priorità più bassa ed è a
59 più bassa ed è a discrezione dal manutentore (MAINTAINER) del file sorgente.
202 Documentare strutture, unioni ed enumerazioni
218 per descrivere unioni ed enumerati. ``member`` viene usato per indicare i
219 membri di strutture ed unioni, ma anche i valori di un tipo enumerato.
228 I membri di strutture, unioni ed enumerati devo essere documentati come i
259 Strutture ed unioni annidate
262 È possibile documentare strutture ed unioni annidate, ad esempio::
[all …]
/linux-6.3-rc2/Documentation/translations/it_IT/process/
A Dhowto.rst114 Questo file descrive dettagliatamente come creare ed inviare una patch
150 sviluppatori del kernel, ed aiutare la risoluzione del problema.
233 sorgente in un formato autoreferenziale ed indicizzato. Un eccellente ed
318 I manutentori dei diversi sottosistemi del kernel --- ed anche molti
485 ed inviatela nuovamente.
514 - "Ho riscritto il pasticcio attuale, ed ecco qua.."
541 adeguatamente presentate, discusse, e suddivise in parti più piccole ed
574 soluzione. Vuole vedere la risposta più pulita ed elegante
578 *"Lo stesso vale per lo sviluppo del kernel. I manutentori ed i
581 semplice ed elegante."*
[all …]
A Dmanagement-style.rst14 ed è principalmente scritto per evitare di rispondere [#f1]_ in continuazione
46 essere il dirigente che la prende. Questo è molto profondo ed ovvio, ma non è
66 Ciò aiuta a capire che la differenza chiave tra una grande decisione ed una
84 tutti che siete stati degli scemi incompetenti, dite che siete dispiaciuti, ed
93 noi piace mantenere le apparenze, ed uscire allo scoperto in pubblico per
96 non era del tutto valido, può rivelarsi difficile anche per un povero ed
142 Ci sono molte persone stupide, ed essere un dirigente significa che dovrete
148 convivere con i loro, ed i vostri, problemi.
252 ed è essere chiamate "teste di c****" con fare da bigotto. Se per il primo
259 essere moralmente ed intellettualmente superiore a tutti quelli attorno a voi,
A D1.Intro.rst25 il ciclo di rilascio del kernel, ed i meccanismi della finestra
39 modifiche, ed esiste un'introduzione ad alcuni strumenti che possono aiutarvi
44 comunità di sviluppo, le modifiche devono essere propriamente formattate ed
74 robusta, efficiente ed adattabile a praticamente qualsiasi situazione.
77 (ed aziende) desiderosi di partecipare a questo sviluppo. I produttori di
81 vogliono che Linux sia capace ed adeguato agli obiettivi ed il più possibile
82 alla mano. Fornitori ed altri produttori di software che basano i propri
83 prodotti su Linux hanno un chiaro interesse verso capacità, prestazioni ed
89 Linux ed influenzarne la direzione di sviluppo. Prodotti non open-source non
203 funzioni al kernel e fornire competenze ed esempi che saranno utili ad
/linux-6.3-rc2/Documentation/mm/damon/
A Ddesign.rst61 heap and the uppermost mmap()-ed region, and the gap between the lowermost
62 mmap()-ed region and the stack in most of the cases. Because these gaps are
68 <uppermost mmap()-ed region>
69 (small mmap()-ed regions and munmap()-ed regions)
70 <lowermost mmap()-ed region>
/linux-6.3-rc2/drivers/media/i2c/
A Dad9389b.c815 struct ad9389b_edid_detect ed; in ad9389b_edid_handler() local
839 ed.present = false; in ad9389b_edid_handler()
840 ed.segment = ad9389b_rd(sd, 0xc4); in ad9389b_edid_handler()
841 v4l2_subdev_notify(sd, AD9389B_EDID_DETECT, (void *)&ed); in ad9389b_edid_handler()
1012 struct ad9389b_edid_detect ed; in ad9389b_check_edid_status() local
1058 ed.present = true; in ad9389b_check_edid_status()
1059 ed.segment = 0; in ad9389b_check_edid_status()
1060 v4l2_subdev_notify(sd, AD9389B_EDID_DETECT, (void *)&ed); in ad9389b_check_edid_status()
1063 return ed.present; in ad9389b_check_edid_status()
/linux-6.3-rc2/arch/s390/include/asm/
A Dcpu_mf.h64 unsigned int ed:1; /* 23: diag-sampling enable control */ member
87 unsigned int ed:1; /* 55: diag-sampling enable control */ member
/linux-6.3-rc2/Documentation/translations/zh_CN/mm/
A Dfrontswap.rst95 一个KVM的实现正在进行中,并且已经被RFC'ed到lkml。而且,利用frontswap,对NVM作为
101 个 swapon'ed swap 设备的几个额外字节。如果 CONFIG_FRONTSWAP 被启用,但没有

Completed in 52 milliseconds

12345678