mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-09 00:00:04 +03:00
23 lines
673 B
C
23 lines
673 B
C
|
/*
|
||
|
* Code for sending uevent notifications to user-space.
|
||
|
*
|
||
|
* Copyright 2015 Datera, Inc.
|
||
|
*/
|
||
|
|
||
|
#ifndef _NOTIFY_H
|
||
|
#define _NOTIFY_H
|
||
|
|
||
|
void bch_notify_cache_set_read_write(struct cache_set *);
|
||
|
void bch_notify_cache_set_read_only(struct cache_set *);
|
||
|
void bch_notify_cache_set_stopped(struct cache_set *);
|
||
|
|
||
|
void bch_notify_cache_read_write(struct cache *);
|
||
|
void bch_notify_cache_read_only(struct cache *);
|
||
|
void bch_notify_cache_added(struct cache *);
|
||
|
void bch_notify_cache_removing(struct cache *);
|
||
|
void bch_notify_cache_removed(struct cache *);
|
||
|
void bch_notify_cache_remove_failed(struct cache *);
|
||
|
void bch_notify_cache_error(struct cache *, bool);
|
||
|
|
||
|
#endif /* _NOTIFY_H */
|