Peter Chubb writes:

> There are three new system calls:
>
>   long   usr_pci_open(int bus, int slot, int function, __u64 dma_mask);
>          Returns a filedescriptor for the PCI device described 
>          by bus,slot,function.  It also enables the device, and sets it 
>          up as a bus-mastering DMA device, with the specified dma mask.

You forgot the PCI domain (a.k.a. hose, phb...) number.
Also, you might encode bus,slot,function according to
the PCI spec. So that gives:

long usr_pci_open(unsigned pcidomain, unsigned devspec, __u64 dmamask);

(with the user library returning an int instead of long)


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to