project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
65 lines
2.0 KiB
C
65 lines
2.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef DRBD_STATE_CHANGE_H
|
|
#define DRBD_STATE_CHANGE_H
|
|
|
|
struct drbd_resource_state_change {
|
|
struct drbd_resource *resource;
|
|
enum drbd_role role[2];
|
|
bool susp[2];
|
|
bool susp_nod[2];
|
|
bool susp_fen[2];
|
|
};
|
|
|
|
struct drbd_device_state_change {
|
|
struct drbd_device *device;
|
|
enum drbd_disk_state disk_state[2];
|
|
};
|
|
|
|
struct drbd_connection_state_change {
|
|
struct drbd_connection *connection;
|
|
enum drbd_conns cstate[2]; /* drbd9: enum drbd_conn_state */
|
|
enum drbd_role peer_role[2];
|
|
};
|
|
|
|
struct drbd_peer_device_state_change {
|
|
struct drbd_peer_device *peer_device;
|
|
enum drbd_disk_state disk_state[2];
|
|
enum drbd_conns repl_state[2]; /* drbd9: enum drbd_repl_state */
|
|
bool resync_susp_user[2];
|
|
bool resync_susp_peer[2];
|
|
bool resync_susp_dependency[2];
|
|
};
|
|
|
|
struct drbd_state_change {
|
|
struct list_head list;
|
|
unsigned int n_devices;
|
|
unsigned int n_connections;
|
|
struct drbd_resource_state_change resource[1];
|
|
struct drbd_device_state_change *devices;
|
|
struct drbd_connection_state_change *connections;
|
|
struct drbd_peer_device_state_change *peer_devices;
|
|
};
|
|
|
|
extern struct drbd_state_change *remember_old_state(struct drbd_resource *, gfp_t);
|
|
extern void copy_old_to_new_state_change(struct drbd_state_change *);
|
|
extern void forget_state_change(struct drbd_state_change *);
|
|
|
|
extern int notify_resource_state_change(struct sk_buff *,
|
|
unsigned int,
|
|
struct drbd_resource_state_change *,
|
|
enum drbd_notification_type type);
|
|
extern int notify_connection_state_change(struct sk_buff *,
|
|
unsigned int,
|
|
struct drbd_connection_state_change *,
|
|
enum drbd_notification_type type);
|
|
extern int notify_device_state_change(struct sk_buff *,
|
|
unsigned int,
|
|
struct drbd_device_state_change *,
|
|
enum drbd_notification_type type);
|
|
extern int notify_peer_device_state_change(struct sk_buff *,
|
|
unsigned int,
|
|
struct drbd_peer_device_state_change *,
|
|
enum drbd_notification_type type);
|
|
|
|
#endif /* DRBD_STATE_CHANGE_H */
|