Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347474
b: refs/heads/master
c: 40f9938
h: refs/heads/master
v: v3
  • Loading branch information
Pawel Moll authored and Rusty Russell committed Dec 18, 2012
1 parent 5f33511 commit d90bcb3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eb34f12b509823571e88b791ae2088280943894f
refs/heads/master: 40f9938c4c69183c5ceaca74b77aff636cc79623
26 changes: 17 additions & 9 deletions trunk/drivers/virtio/virtio_mmio.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,25 +521,33 @@ static int vm_cmdline_set(const char *device,
int err;
struct resource resources[2] = {};
char *str;
long long int base;
long long int base, size;
unsigned int irq;
int processed, consumed = 0;
struct platform_device *pdev;

resources[0].flags = IORESOURCE_MEM;
resources[1].flags = IORESOURCE_IRQ;

resources[0].end = memparse(device, &str) - 1;
/* Consume "size" part of the command line parameter */
size = memparse(device, &str);

/* Get "@<base>:<irq>[:<id>]" chunks */
processed = sscanf(str, "@%lli:%u%n:%d%n",
&base, &resources[1].start, &consumed,
&base, &irq, &consumed,
&vm_cmdline_id, &consumed);

if (processed < 2 || processed > 3 || str[consumed])
/*
* sscanf() must processes at least 2 chunks; also there
* must be no extra characters after the last chunk, so
* str[consumed] must be '\0'
*/
if (processed < 2 || str[consumed])
return -EINVAL;

resources[0].flags = IORESOURCE_MEM;
resources[0].start = base;
resources[0].end += base;
resources[1].end = resources[1].start;
resources[0].end = base + size - 1;

resources[1].flags = IORESOURCE_IRQ;
resources[1].start = resources[1].end = irq;

if (!vm_cmdline_parent_registered) {
err = device_register(&vm_cmdline_parent);
Expand Down

0 comments on commit d90bcb3

Please sign in to comment.