Symbol: snp_msg_desc
arch/x86/coco/sev/core.c
1555
int snp_msg_init(struct snp_msg_desc *mdesc, int vmpck_id)
arch/x86/coco/sev/core.c
1583
struct snp_msg_desc *snp_msg_alloc(void)
arch/x86/coco/sev/core.c
1585
struct snp_msg_desc *mdesc;
arch/x86/coco/sev/core.c
1590
mdesc = kzalloc_obj(struct snp_msg_desc);
arch/x86/coco/sev/core.c
1622
void snp_msg_free(struct snp_msg_desc *mdesc)
arch/x86/coco/sev/core.c
1656
static void snp_disable_vmpck(struct snp_msg_desc *mdesc)
arch/x86/coco/sev/core.c
1664
static inline u64 __snp_get_msg_seqno(struct snp_msg_desc *mdesc)
arch/x86/coco/sev/core.c
1677
static u64 snp_get_msg_seqno(struct snp_msg_desc *mdesc)
arch/x86/coco/sev/core.c
1697
static void snp_inc_msg_seqno(struct snp_msg_desc *mdesc)
arch/x86/coco/sev/core.c
1706
static int verify_and_dec_payload(struct snp_msg_desc *mdesc, struct snp_guest_req *req)
arch/x86/coco/sev/core.c
1747
static int enc_payload(struct snp_msg_desc *mdesc, u64 seqno, struct snp_guest_req *req)
arch/x86/coco/sev/core.c
1782
static int __handle_guest_request(struct snp_msg_desc *mdesc, struct snp_guest_req *req)
arch/x86/coco/sev/core.c
1867
int snp_send_guest_request(struct snp_msg_desc *mdesc, struct snp_guest_req *req)
arch/x86/coco/sev/core.c
1941
struct snp_msg_desc *mdesc;
arch/x86/include/asm/sev.h
525
int snp_msg_init(struct snp_msg_desc *mdesc, int vmpck_id);
arch/x86/include/asm/sev.h
526
struct snp_msg_desc *snp_msg_alloc(void);
arch/x86/include/asm/sev.h
527
void snp_msg_free(struct snp_msg_desc *mdesc);
arch/x86/include/asm/sev.h
528
int snp_send_guest_request(struct snp_msg_desc *mdesc, struct snp_guest_req *req);
arch/x86/include/asm/sev.h
633
static inline int snp_msg_init(struct snp_msg_desc *mdesc, int vmpck_id) { return -1; }
arch/x86/include/asm/sev.h
634
static inline struct snp_msg_desc *snp_msg_alloc(void) { return NULL; }
arch/x86/include/asm/sev.h
635
static inline void snp_msg_free(struct snp_msg_desc *mdesc) { }
arch/x86/include/asm/sev.h
636
static inline int snp_send_guest_request(struct snp_msg_desc *mdesc,
drivers/virt/coco/sev-guest/sev-guest.c
121
struct snp_msg_desc *mdesc = snp_dev->msg_desc;
drivers/virt/coco/sev-guest/sev-guest.c
174
struct snp_msg_desc *mdesc = snp_dev->msg_desc;
drivers/virt/coco/sev-guest/sev-guest.c
41
struct snp_msg_desc *msg_desc;
drivers/virt/coco/sev-guest/sev-guest.c
631
struct snp_msg_desc *mdesc;
drivers/virt/coco/sev-guest/sev-guest.c
70
struct snp_msg_desc *mdesc = snp_dev->msg_desc;