Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109087
b: refs/heads/master
c: 532a608
h: refs/heads/master
i:
  109085: 980b455
  109083: 8e75153
  109079: 6207e57
  109071: 9466fd7
  109055: d9ee509
v: v3
  • Loading branch information
Anthony Liguori authored and Rusty Russell committed Aug 25, 2008
1 parent 5ec578c commit f95416e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: ffb4ba76a25ab6c9deeec33e4f58395586ca747c
refs/heads/master: 532a6086e35fa3b5761e68af36d4e42a550eba15
2 changes: 1 addition & 1 deletion trunk/drivers/virtio/virtio_balloon.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static inline s64 towards_target(struct virtio_balloon *vb)
vb->vdev->config->get(vb->vdev,
offsetof(struct virtio_balloon_config, num_pages),
&v, sizeof(v));
return v - vb->num_pages;
return (s64)v - vb->num_pages;
}

static void update_balloon_size(struct virtio_balloon *vb)
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -1799,7 +1799,7 @@ static void *module_alloc_update_bounds(unsigned long size)

/* Allocate and load the module: note that size of section 0 is always
zero, and we rely on this for optional sections. */
static noinline struct module *load_module(void __user *umod,
static struct module *load_module(void __user *umod,
unsigned long len,
const char __user *uargs)
{
Expand Down

0 comments on commit f95416e

Please sign in to comment.