Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102629803
D36654.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D36654.diff
View Options
diff --git a/sys/compat/linuxkpi/common/include/linux/pci.h b/sys/compat/linuxkpi/common/include/linux/pci.h
--- a/sys/compat/linuxkpi/common/include/linux/pci.h
+++ b/sys/compat/linuxkpi/common/include/linux/pci.h
@@ -1472,28 +1472,17 @@
}
static inline int
-pcim_iomap_regions_request_all(struct pci_dev *pdev, uint32_t mask, char *name)
+pcim_iomap_regions(struct pci_dev *pdev, uint32_t mask, const char *name)
{
struct pcim_iomap_devres *dr;
void *res;
- uint32_t mappings, requests, req_mask;
- int bar, error;
+ uint32_t mappings;
+ int bar;
dr = lkpi_pcim_iomap_devres_find(pdev);
if (dr == NULL)
return (-ENOMEM);
- /* Request all the BARs ("regions") we do not iomap. */
- req_mask = ((1 << (PCIR_MAX_BAR_0 + 1)) - 1) & ~mask;
- for (bar = requests = 0; requests != req_mask; bar++) {
- if ((req_mask & (1 << bar)) == 0)
- continue;
- error = pci_request_region(pdev, bar, name);
- if (error != 0 && error != -ENODEV)
- goto err;
- requests |= (1 << bar);
- }
-
/* Now iomap all the requested (by "mask") ones. */
for (bar = mappings = 0; mappings != mask; bar++) {
if ((mask & (1 << bar)) == 0)
@@ -1516,7 +1505,6 @@
}
return (0);
-
err:
for (bar = PCIR_MAX_BAR_0; bar >= 0; bar--) {
if ((mappings & (1 << bar)) != 0) {
@@ -1524,14 +1512,44 @@
if (res == NULL)
continue;
pci_iounmap(pdev, res);
- } else if ((requests & (1 << bar)) != 0) {
- pci_release_region(pdev, bar);
}
}
return (-EINVAL);
}
+static inline int
+pcim_iomap_regions_request_all(struct pci_dev *pdev, uint32_t mask, char *name)
+{
+ uint32_t requests, req_mask;
+ int bar, error;
+
+ /* Request all the BARs ("regions") we do not iomap. */
+ req_mask = ((1 << (PCIR_MAX_BAR_0 + 1)) - 1) & ~mask;
+ for (bar = requests = 0; requests != req_mask; bar++) {
+ if ((req_mask & (1 << bar)) == 0)
+ continue;
+ error = pci_request_region(pdev, bar, name);
+ if (error != 0 && error != -ENODEV)
+ goto err;
+ requests |= (1 << bar);
+ }
+
+ error = pcim_iomap_regions(pdev, mask, name);
+ if (error != 0)
+ goto err;
+
+ return (0);
+
+err:
+ for (bar = PCIR_MAX_BAR_0; bar >= 0; bar--) {
+ if ((requests & (1 << bar)) != 0)
+ pci_release_region(pdev, bar);
+ }
+
+ return (-EINVAL);
+}
+
/* This is a FreeBSD extension so we can use bus_*(). */
static inline void
linuxkpi_pcim_want_to_use_bus_functions(struct pci_dev *pdev)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 16, 1:34 AM (20 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14650924
Default Alt Text
D36654.diff (2 KB)
Attached To
Mode
D36654: LinuxKPI: pci.h split up pcim_iomap_regions_request_all()
Attached
Detach File
Event Timeline
Log In to Comment