deccd624eb
This reverts commit d83c70b503
.
The oom during bootup issue is resovled by removing
CAP_IPC_LOCK from userspace. Revert this patch since it was
only added as temporary fix.
Change-Id: I1cfbfeede2f0a779dd9de193eb52f5de18f91dd9
Signed-off-by: Sudarshan Rajagopalan <quic_sudaraja@quicinc.com>
13 lines
403 B
C
13 lines
403 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
#ifndef QTI_VIRTIO_MEM_PRIVATE_H
|
|
#define QTI_VIRTIO_MEM_PRIVATE_H
|
|
|
|
int virtio_mem_update_config_size(s64 size, bool sync);
|
|
int virtio_mem_get_device_block_size(uint64_t *device_block_size);
|
|
int virtio_mem_get_max_plugin_threshold(uint64_t *max_plugin_threshold);
|
|
|
|
#endif
|