Commit ec7901a3 authored by tianx's avatar tianx
Browse files

drivers: Fix kabi check failure

yunsilicon inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/IALL3Y


CVE: NA

------------------------------------------

Fix kabi check failure

Fixes: a2fe6fdf ("drivers: Add GDR(GPU Direct RDMA) support")
Reviewed-by: default avatarWei Honggang <weihg@yunsilicon.com>
Reviewed-by: default avatarWang Saochuang <wangsc@yunsilicon.com>
Signed-off-by: default avatarTian Xin <tianx@yunsilicon.com>
parent a2fe6fdf
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -26,8 +26,10 @@ struct ib_umem {
	u32 is_odp : 1;
	u32 is_dmabuf : 1;
#ifdef CONFIG_INFINIBAND_PEER_MEMORY
#ifndef __GENKSYMS__
	/* Placing at the end of the bitfield list is ABI preserving on LE */
	u32 is_peer : 1;
#endif
#endif
	struct sg_append_table sgt_append;
};