Files
linux-apfs/include/linux/sonet.h
T

20 lines
430 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/* sonet.h - SONET/SHD physical layer control */
#ifndef LINUX_SONET_H
#define LINUX_SONET_H
2011-07-26 16:09:06 -07:00
#include <linux/atomic.h>
2012-10-13 10:46:48 +01:00
#include <uapi/linux/sonet.h>
2005-04-16 15:20:36 -07:00
struct k_sonet_stats {
#define __HANDLE_ITEM(i) atomic_t i
__SONET_ITEMS
#undef __HANDLE_ITEM
};
extern void sonet_copy_stats(struct k_sonet_stats *from,struct sonet_stats *to);
extern void sonet_subtract_stats(struct k_sonet_stats *from,
struct sonet_stats *to);
#endif