Skip to content

Commit

Permalink
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/g…
Browse files Browse the repository at this point in the history
…it/aegl/linux-2.6

* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:
  [IA64] increase ia64 static per cpu area
  [IA64] Put ia64 config files on the Uwe Kleine-König diet
  [IA64] perfmon: convert to unlocked_ioctl
  [IA64] beautify vmlinux.lds.h
  • Loading branch information
torvalds committed Aug 5, 2010
2 parents c3d1f17 + 9354a55 commit 93b9e9a
Show file tree
Hide file tree
Showing 10 changed files with 1,058 additions and 9,508 deletions.
1,428 changes: 94 additions & 1,334 deletions arch/ia64/configs/bigsur_defconfig

Large diffs are not rendered by default.

1,788 changes: 175 additions & 1,613 deletions arch/ia64/configs/generic_defconfig

Large diffs are not rendered by default.

1,493 changes: 156 additions & 1,337 deletions arch/ia64/configs/gensparse_defconfig

Large diffs are not rendered by default.

756 changes: 45 additions & 711 deletions arch/ia64/configs/sim_defconfig

Large diffs are not rendered by default.

1,356 changes: 132 additions & 1,224 deletions arch/ia64/configs/tiger_defconfig

Large diffs are not rendered by default.

1,678 changes: 139 additions & 1,539 deletions arch/ia64/configs/xen_domu_defconfig

Large diffs are not rendered by default.

1,681 changes: 116 additions & 1,565 deletions arch/ia64/configs/zx1_defconfig

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion arch/ia64/include/asm/page.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#define PAGE_SIZE (__IA64_UL_CONST(1) << PAGE_SHIFT)
#define PAGE_MASK (~(PAGE_SIZE - 1))

#define PERCPU_PAGE_SHIFT 16 /* log2() of max. size of per-CPU area */
#define PERCPU_PAGE_SHIFT 18 /* log2() of max. size of per-CPU area */
#define PERCPU_PAGE_SIZE (__IA64_UL_CONST(1) << PERCPU_PAGE_SHIFT)


Expand Down
22 changes: 11 additions & 11 deletions arch/ia64/kernel/perfmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -1696,8 +1696,8 @@ pfm_poll(struct file *filp, poll_table * wait)
return mask;
}

static int
pfm_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
static long
pfm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
DPRINT(("pfm_ioctl called\n"));
return -EINVAL;
Expand Down Expand Up @@ -2174,15 +2174,15 @@ pfm_no_open(struct inode *irrelevant, struct file *dontcare)


static const struct file_operations pfm_file_ops = {
.llseek = no_llseek,
.read = pfm_read,
.write = pfm_write,
.poll = pfm_poll,
.ioctl = pfm_ioctl,
.open = pfm_no_open, /* special open code to disallow open via /proc */
.fasync = pfm_fasync,
.release = pfm_close,
.flush = pfm_flush
.llseek = no_llseek,
.read = pfm_read,
.write = pfm_write,
.poll = pfm_poll,
.unlocked_ioctl = pfm_ioctl,
.open = pfm_no_open, /* special open code to disallow open via /proc */
.fasync = pfm_fasync,
.release = pfm_close,
.flush = pfm_flush
};

static int
Expand Down
Loading

0 comments on commit 93b9e9a

Please sign in to comment.