Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/media/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 24 B image not shown  

Impressum lm.h   Sprache: unbekannt

 
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright(c) 2023 Advanced Micro Devices, Inc. */

#ifndef _LM_H_
#define _LM_H_

#include <linux/fs.h>
#include <linux/mutex.h>
#include <linux/scatterlist.h>
#include <linux/types.h>

#include <linux/pds/pds_common.h>
#include <linux/pds/pds_adminq.h>

struct pds_vfio_lm_file {
 struct file *filep;
 struct mutex lock; /* protect live migration data file */
 u64 size;  /* Size with valid data */
 u64 alloc_size;  /* Total allocated size. Always >= len */
 void *page_mem;  /* memory allocated for pages */
 struct page **pages; /* Backing pages for file */
 unsigned long long npages;
 struct sg_table sg_table; /* SG table for backing pages */
 struct pds_lm_sg_elem *sgl; /* DMA mapping */
 dma_addr_t sgl_addr;
 u16 num_sge;
 struct scatterlist *last_offset_sg; /* Iterator */
 unsigned int sg_last_entry;
 unsigned long last_offset;
 bool disabled;
};

struct pds_vfio_pci_device;

struct file *
pds_vfio_step_device_state_locked(struct pds_vfio_pci_device *pds_vfio,
      enum vfio_device_mig_state next);

void pds_vfio_put_save_file(struct pds_vfio_pci_device *pds_vfio);
void pds_vfio_put_restore_file(struct pds_vfio_pci_device *pds_vfio);

#endif /* _LM_H_ */

Messung V0.5 in Prozent
C=94 H=91 G=92

[Seitenstruktur0.5Druckenetwas mehr zur Ethik2026-06-08]