printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / vbox_utils.h
blobdb8a7d118093bbba7d6acbe45cd2ef501159b401
1 /* SPDX-License-Identifier: (GPL-2.0 OR CDDL-1.0) */
2 /* Copyright (C) 2006-2016 Oracle Corporation */
4 #ifndef __VBOX_UTILS_H__
5 #define __VBOX_UTILS_H__
7 #include <linux/printk.h>
8 #include <linux/vbox_vmmdev_types.h>
10 struct vbg_dev;
12 /**
13 * vboxguest logging functions, these log both to the backdoor and call
14 * the equivalent kernel pr_foo function.
16 __printf(1, 2) void vbg_info(const char *fmt, ...);
17 __printf(1, 2) void vbg_warn(const char *fmt, ...);
18 __printf(1, 2) void vbg_err(const char *fmt, ...);
19 __printf(1, 2) void vbg_err_ratelimited(const char *fmt, ...);
21 /* Only use backdoor logging for non-dynamic debug builds */
22 #if defined(DEBUG) && !defined(CONFIG_DYNAMIC_DEBUG)
23 __printf(1, 2) void vbg_debug(const char *fmt, ...);
24 #else
25 #define vbg_debug pr_debug
26 #endif
28 int vbg_hgcm_connect(struct vbg_dev *gdev, u32 requestor,
29 struct vmmdev_hgcm_service_location *loc,
30 u32 *client_id, int *vbox_status);
32 int vbg_hgcm_disconnect(struct vbg_dev *gdev, u32 requestor,
33 u32 client_id, int *vbox_status);
35 int vbg_hgcm_call(struct vbg_dev *gdev, u32 requestor, u32 client_id,
36 u32 function, u32 timeout_ms,
37 struct vmmdev_hgcm_function_parameter *parms, u32 parm_count,
38 int *vbox_status);
40 /**
41 * Convert a VirtualBox status code to a standard Linux kernel return value.
42 * Return: 0 or negative errno value.
43 * @rc: VirtualBox status code to convert.
45 int vbg_status_code_to_errno(int rc);
47 /**
48 * Helper for the vboxsf driver to get a reference to the guest device.
49 * Return: a pointer to the gdev; or a ERR_PTR value on error.
51 struct vbg_dev *vbg_get_gdev(void);
53 /**
54 * Helper for the vboxsf driver to put a guest device reference.
55 * @gdev: Reference returned by vbg_get_gdev to put.
57 void vbg_put_gdev(struct vbg_dev *gdev);
59 #endif