···158158 * the object is destroyed.159159 * @event_queue: Queue for processes waiting on buffer object status change.160160 * @mem: structure describing current placement.161161- * @persistant_swap_storage: Usually the swap storage is deleted for buffers161161+ * @persistent_swap_storage: Usually the swap storage is deleted for buffers162162 * pinned in physical memory. If this behaviour is not desired, this member163163- * holds a pointer to a persistant shmem object.163163+ * holds a pointer to a persistent shmem object.164164 * @ttm: TTM structure holding system pages.165165 * @evicted: Whether the object was evicted without user-space knowing.166166 * @cpu_writes: For synchronization. Number of cpu writers.···221221 */222222223223 struct ttm_mem_reg mem;224224- struct file *persistant_swap_storage;224224+ struct file *persistent_swap_storage;225225 struct ttm_tt *ttm;226226 bool evicted;227227···459459 * user buffer object.460460 * @interruptible: If needing to sleep to wait for GPU resources,461461 * sleep interruptible.462462- * @persistant_swap_storage: Usually the swap storage is deleted for buffers462462+ * @persistent_swap_storage: Usually the swap storage is deleted for buffers463463 * pinned in physical memory. If this behaviour is not desired, this member464464- * holds a pointer to a persistant shmem object. Typically, this would464464+ * holds a pointer to a persistent shmem object. Typically, this would465465 * point to the shmem object backing a GEM object if TTM is used to back a466466 * GEM user interface.467467 * @acc_size: Accounted size for this object.···490490 uint32_t page_alignment,491491 unsigned long buffer_start,492492 bool interrubtible,493493- struct file *persistant_swap_storage,493493+ struct file *persistent_swap_storage,494494 size_t acc_size,495495 void (*destroy) (struct ttm_buffer_object *));496496/**···506506 * user buffer object.507507 * @interruptible: If needing to sleep while waiting for GPU resources,508508 * sleep interruptible.509509- * @persistant_swap_storage: Usually the swap storage is deleted for buffers509509+ * @persistent_swap_storage: Usually the swap storage is deleted for buffers510510 * pinned in physical memory. If this behaviour is not desired, this member511511- * holds a pointer to a persistant shmem object. Typically, this would511511+ * holds a pointer to a persistent shmem object. Typically, this would512512 * point to the shmem object backing a GEM object if TTM is used to back a513513 * GEM user interface.514514 * @p_bo: On successful completion *p_bo points to the created object.···528528 uint32_t page_alignment,529529 unsigned long buffer_start,530530 bool interruptible,531531- struct file *persistant_swap_storage,531531+ struct file *persistent_swap_storage,532532 struct ttm_buffer_object **p_bo);533533534534/**