HomeSort by: relevance | last modified time | path
    Searched defs:fbs (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/include/drm/
drm_file.h 282 * @fbs:
287 * Protected by @fbs_lock. Note that the @fbs list holds a reference on
290 struct list_head fbs; member in struct:drm_file
292 /** @fbs_lock: Protects @fbs. */
  /src/sys/external/bsd/drm2/dist/drm/
drm_framebuffer.c 373 list_add(&fb->filp_head, &file_priv->fbs);
405 struct list_head fbs; member in struct:drm_mode_rmfb_work
412 while (!list_empty(&arg->fbs)) {
414 list_first_entry(&arg->fbs, typeof(*fb), filp_head);
449 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
464 * we now own the reference that was stored in the fbs list
474 INIT_LIST_HEAD(&arg.fbs);
475 list_add_tail(&fb->filp_head, &arg.fbs);
649 * drm_fb_release - remove and free the FBs on this file
652 * Destroy all the FBs associated with @filp
    [all...]
  /src/sys/dev/ic/
ahcisata_core.c 1692 * Read FBS to get the drive which caused the error, if PM is in use.
1701 uint32_t fbs = AHCI_READ(sc, AHCI_P_FBS(chp->ch_channel)); local in function:ahci_channel_recover
1702 if (fbs & AHCI_P_FBS_SDE) {
1703 drive = (fbs & AHCI_P_FBS_DWE) >> AHCI_P_FBS_DWE_SHIFT;
1709 fbs |= AHCI_P_FBS_DEC;
1710 AHCI_WRITE(sc, AHCI_P_FBS(chp->ch_channel), fbs);
1712 fbs = AHCI_READ(sc,
1714 if ((fbs & AHCI_P_FBS_DEC) == 0)
1718 if ((fbs & AHCI_P_FBS_DEC) != 0) {

Completed in 16 milliseconds