Перенаправление именованного канала stdout вместо числового файлового дескриптора

/*
*  For PCI devices, the region numbers are assigned this way:
*/
enum {
                /* #0-5: standard PCI resources */
                PCI_STD_RESOURCES,
                PCI_STD_RESOURCE_END = 5,   // BAR 0 – BAR5

                /* #6: expansion ROM resource */
                PCI_ROM_RESOURCE,

                /* device specific resources */
#ifdef CONFIG_PCI_IOV
                PCI_IOV_RESOURCES,    //   <--- #7 
                PCI_IOV_RESOURCE_END = PCI_IOV_RESOURCES + PCI_SRIOV_NUM_BARS - 1, //   7+6  -1
#endif

                /* resources assigned to buses behind the bridge */
#define PCI_BRIDGE_RESOURCE_NUM 4

                PCI_BRIDGE_RESOURCES, < // <--- #13
                PCI_BRIDGE_RESOURCE_END = PCI_BRIDGE_RESOURCES +           
                                                                  PCI_BRIDGE_RESOURCE_NUM - 1,

                /* total resources associated with a PCI device */
                PCI_NUM_RESOURCES,

                /* preserve this for compatibility */
                DEVICE_COUNT_RESOURCE = PCI_NUM_RESOURCES,
};
1
03.05.2020, 10:53
0 ответов

Теги

Похожие вопросы