batman-adv: Replace C99 int types with kernel type
(s|u)(8|16|32|64) are the preferred types in the kernel. The use of the standard C99 types u?int(8|16|32|64)_t are objected by some people and even checkpatch now warns about using them. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
This commit is contained in:

committed by
Antonio Quartulli

orang tua
56fff0a01f
melakukan
6b5e971a28
@@ -28,38 +28,37 @@ struct net_device;
|
||||
struct seq_file;
|
||||
|
||||
int batadv_tt_init(struct batadv_priv *bat_priv);
|
||||
bool batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
|
||||
unsigned short vid, int ifindex, uint32_t mark);
|
||||
uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
|
||||
const uint8_t *addr, unsigned short vid,
|
||||
const char *message, bool roaming);
|
||||
bool batadv_tt_local_add(struct net_device *soft_iface, const u8 *addr,
|
||||
unsigned short vid, int ifindex, u32 mark);
|
||||
u16 batadv_tt_local_remove(struct batadv_priv *bat_priv,
|
||||
const u8 *addr, unsigned short vid,
|
||||
const char *message, bool roaming);
|
||||
int batadv_tt_local_seq_print_text(struct seq_file *seq, void *offset);
|
||||
int batadv_tt_global_seq_print_text(struct seq_file *seq, void *offset);
|
||||
void batadv_tt_global_del_orig(struct batadv_priv *bat_priv,
|
||||
struct batadv_orig_node *orig_node,
|
||||
int32_t match_vid, const char *message);
|
||||
s32 match_vid, const char *message);
|
||||
int batadv_tt_global_hash_count(struct batadv_priv *bat_priv,
|
||||
const uint8_t *addr, unsigned short vid);
|
||||
const u8 *addr, unsigned short vid);
|
||||
struct batadv_orig_node *batadv_transtable_search(struct batadv_priv *bat_priv,
|
||||
const uint8_t *src,
|
||||
const uint8_t *addr,
|
||||
const u8 *src, const u8 *addr,
|
||||
unsigned short vid);
|
||||
void batadv_tt_free(struct batadv_priv *bat_priv);
|
||||
bool batadv_is_my_client(struct batadv_priv *bat_priv, const uint8_t *addr,
|
||||
bool batadv_is_my_client(struct batadv_priv *bat_priv, const u8 *addr,
|
||||
unsigned short vid);
|
||||
bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, uint8_t *src,
|
||||
uint8_t *dst, unsigned short vid);
|
||||
bool batadv_is_ap_isolated(struct batadv_priv *bat_priv, u8 *src, u8 *dst,
|
||||
unsigned short vid);
|
||||
void batadv_tt_local_commit_changes(struct batadv_priv *bat_priv);
|
||||
bool batadv_tt_global_client_is_roaming(struct batadv_priv *bat_priv,
|
||||
uint8_t *addr, unsigned short vid);
|
||||
u8 *addr, unsigned short vid);
|
||||
bool batadv_tt_local_client_is_roaming(struct batadv_priv *bat_priv,
|
||||
uint8_t *addr, unsigned short vid);
|
||||
u8 *addr, unsigned short vid);
|
||||
void batadv_tt_local_resize_to_mtu(struct net_device *soft_iface);
|
||||
bool batadv_tt_add_temporary_global_entry(struct batadv_priv *bat_priv,
|
||||
struct batadv_orig_node *orig_node,
|
||||
const unsigned char *addr,
|
||||
unsigned short vid);
|
||||
bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
|
||||
const uint8_t *addr, unsigned short vid);
|
||||
const u8 *addr, unsigned short vid);
|
||||
|
||||
#endif /* _NET_BATMAN_ADV_TRANSLATION_TABLE_H_ */
|
||||
|
Reference in New Issue
Block a user