mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
073082327a
PD#SWPL-88149 Problem: add filp_open debug function used to relabel Solution: add filp_open debug function Verify: sc2 Change-Id: Iba99f9008ad475d2666cd25fac2c188c49b4a2dc
13 lines
377 B
C
13 lines
377 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __AMLOGIC_DEBUG_RELABEL_H
|
|
#define __AMLOGIC_DEBUG_RELABEL_H
|
|
|
|
struct file *debug_filp_open(const char *filename, int flags, umode_t mode);
|
|
int debug_vfs_setxattr(struct dentry *dentry,
|
|
const char *name, const void *value, size_t size, int flags);
|
|
#endif
|