| /linux/drivers/usb/host/ |
| A D | ohci-q.c | 149 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 D | fhci-q.c | 58 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 D | fhci-mem.c | 30 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 D | fhci-sched.c | 44 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 D | ohci-mem.c | 55 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 D | ohci-hcd.c | 153 struct ed *ed; in ohci_urb_enqueue() local 162 if (! ed) in ohci_urb_enqueue() 199 urb_priv->ed = ed; in ohci_urb_enqueue() 252 ed->last_iso = frame + ed->interval * (size - 1); in ohci_urb_enqueue() 256 u16 frame = ed->last_iso + ed->interval; in ohci_urb_enqueue() 353 struct ed *ed = ep->hcpriv; in ohci_endpoint_disable() local 359 if (!ed) in ohci_endpoint_disable() 393 ed, ep->desc.bEndpointAddress, ed->state, in ohci_endpoint_disable() 754 struct ed *ed; in io_watchdog_func() local 1046 struct ed *ed = priv->ed; in ohci_restart() local [all …]
|
| A D | ohci-dbg.c | 313 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 D | fhci.h | 323 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 D | fhci-hcd.c | 169 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() 511 struct ed *ed; in fhci_endpoint_disable() local 516 ed = ep->hcpriv; in fhci_endpoint_disable() 517 if (ed) { in fhci_endpoint_disable() [all …]
|
| A D | ohci.h | 26 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 D | ohci-hub.c | 143 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/drivers/edac/ |
| A D | octeon_edac-pc.c | 30 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/drivers/soc/fsl/dpio/ |
| A D | dpio-service.c | 463 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/Documentation/ABI/testing/ |
| A D | sysfs-block-aoe | 4 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/Documentation/translations/it_IT/doc-guide/ |
| A D | kernel-doc.rst | 22 funzioni ed i tipi di dato con i loro relativi collegamenti. Le descrizioni 23 vengono filtrare per cercare i riferimenti ed i marcatori. 40 dei sorgenti. Quest'ultima raccomandazione ha una priorità più bassa ed è a 56 più bassa ed è a discrezione dal manutentore (MAINTAINER) del file sorgente. 199 Documentare strutture, unioni ed enumerazioni 215 per descrivere unioni ed enumerati. ``member`` viene usato per indicare i 216 membri di strutture ed unioni, ma anche i valori di un tipo enumerato. 225 I membri di strutture, unioni ed enumerati devo essere documentati come i 256 Strutture ed unioni annidate 259 È possibile documentare strutture ed unioni annidate, ad esempio:: [all …]
|
| /linux/Documentation/translations/it_IT/process/ |
| A D | howto.rst | 115 Questo file descrive dettagliatamente come creare ed inviare una patch 151 sviluppatori del kernel, ed aiutare la risoluzione del problema. 234 sorgente in un formato autoreferenziale ed indicizzato. Un eccellente ed 319 I manutentori dei diversi sottosistemi del kernel --- ed anche molti 486 ed inviatela nuovamente. 515 - "Ho riscritto il pasticcio attuale, ed ecco qua.." 542 adeguatamente presentate, discusse, e suddivise in parti più piccole ed 575 soluzione. Vuole vedere la risposta più pulita ed elegante 579 *"Lo stesso vale per lo sviluppo del kernel. I manutentori ed i 582 semplice ed elegante."* [all …]
|
| A D | management-style.rst | 14 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 D | 1.Intro.rst | 25 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/drivers/media/i2c/ |
| A D | ad9389b.c | 815 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()
|
| A D | adv7511-v4l2.c | 1466 struct adv7511_edid_detect ed; in adv7511_notify_no_edid() local 1469 ed.present = false; in adv7511_notify_no_edid() 1470 ed.segment = adv7511_rd(sd, 0xc4); in adv7511_notify_no_edid() 1471 ed.phys_addr = CEC_PHYS_ADDR_INVALID; in adv7511_notify_no_edid() 1472 cec_s_phys_addr(state->cec_adap, ed.phys_addr, false); in adv7511_notify_no_edid() 1659 struct adv7511_edid_detect ed; in adv7511_check_edid_status() local 1701 ed.phys_addr = cec_get_edid_phys_addr(state->edid.data, in adv7511_check_edid_status() 1707 ed.present = true; in adv7511_check_edid_status() 1708 ed.segment = 0; in adv7511_check_edid_status() 1710 cec_s_phys_addr(state->cec_adap, ed.phys_addr, false); in adv7511_check_edid_status() [all …]
|
| /linux/Documentation/vm/damon/ |
| A D | design.rst | 61 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/arch/powerpc/crypto/ |
| A D | aes-tab-4k.S | 74 .long R(00, 00, 00, 00), R(c1, ed, ed, 2c) 76 .long R(79, b1, b1, c8), R(b6, 5b, 5b, ed) 82 .long R(4f, aa, aa, e5), R(ed, fb, fb, 16) 195 .long R(02, 03, 6a, ba), R(ed, 16, 82, 5c) 214 .long R(09, 80, 86, 83), R(32, 2b, ed, 48) 233 .long R(b6, ed, fc, 68), R(b8, e4, f1, 63) 279 .long R(e1, 1c, e5, ed), R(7a, 47, b1, 3c)
|
| /linux/Documentation/translations/zh_CN/core-api/ |
| A D | kref.rst | 72 如果你已经有了一个指向kref-ed结构体的有效指针(refcount不能为零),你 80 在没有已经持有有效指针的情况下获得一个kref-ed结构体的有效指针,那么在没 83 3) 如果代码试图获得对一个kref-ed结构体的引用,而不持有一个有效的指针,它必
|
| /linux/drivers/usb/misc/ |
| A D | ftdi-elan.c | 1434 u8 ed = ed_number - 1; in ftdi_elan_edset_setup() local 1447 command->header = 0x80 | (ed << 5); in ftdi_elan_edset_setup() 1491 u8 ed = ed_number - 1; in ftdi_elan_edset_input() local 1506 command->header = 0x82 | (ed << 5); in ftdi_elan_edset_input() 1556 u8 ed = ed_number - 1; in ftdi_elan_edset_empty() local 1569 command->header = 0x81 | (ed << 5); in ftdi_elan_edset_empty() 1613 u8 ed = ed_number - 1; in ftdi_elan_edset_output() local 1633 command->header = 0x81 | (ed << 5); in ftdi_elan_edset_output() 1692 u8 ed = ed_number - 1; in ftdi_elan_edset_single() local 1707 command->header = 0x83 | (ed << 5); in ftdi_elan_edset_single() [all …]
|
| /linux/Documentation/userspace-api/media/drivers/ |
| A D | meye-uapi.rst | 37 obtained with a VIDIOCGMBUF call and mmap'ed by the 51 available from the first mmap'ed buffer.
|