aboutsummaryrefslogtreecommitdiff
path: root/arch/parisc/kernel/perf.c
AgeCommit message (Collapse)AuthorFilesLines
2010-10-16parisc: remove big kernel lockArnd Bergmann1-4/+0
The parisc version of the perf code is sufficiently protected by its own spinlock, no need to use the BKL. Signed-off-by: Arnd Bergmann <[email protected]> Cc: Kyle McMartin <[email protected]> Cc: Helge Deller <[email protected]> Cc: "James E.J. Bottomley" <[email protected]> Cc: [email protected]
2009-11-09tree-wide: fix a very frequent spelling mistakeDirk Hohndel1-1/+1
something-bility is spelled as something-blity so a grep for 'blit' would find these lines this is so trivial that I didn't split it by subsystem / copy additional maintainers - all changes are to comments The only purpose is to get fewer false positives when grepping around the kernel sources. Signed-off-by: Dirk Hohndel <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
2009-01-05parisc: Replace NR_CPUS in parisc codeHelge Deller1-2/+2
parisc: Replace most arrays sized by NR_CPUS with percpu variables. Signed-off-by: Helge Deller <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2008-07-02parisc-kernel-perf: BKL pushdownArnd Bergmann1-0/+4
Signed-off-by: Arnd Bergmann <[email protected]>
2007-05-22[PARISC] spelling fixes: arch/parisc/Simon Arlott1-6/+6
Spelling fixes in arch/parisc/. Signed-off-by: Simon Arlott <[email protected]> Acked-by: Grant Grundler <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2007-05-22[PARISC] Let PA-8900 processors bootKyle McMartin1-2/+4
Signed-off-by: Kyle McMartin <[email protected]>
2007-02-12[PATCH] mark struct file_operations const 2Arjan van de Ven1-1/+1
Many struct file_operations in the kernel can be "const". Marking them const moves these to the .rodata section, which avoids false sharing with potential dirty data. In addition it'll catch accidental writes at compile time to these shared resources. [[email protected]: sparc64 fix] Signed-off-by: Arjan van de Ven <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2006-03-30[PARISC] I/O-Space must be ioremap_nocache()'dHelge Deller1-1/+1
Addresses in F-space must be accessed uncached on most parisc machines. Signed-off-by: Helge Deller <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2006-01-22[PARISC] Remove {,un}lock_kernel from perf ioctlMatthew Wilcox1-3/+0
Remove the lock_kernel/unlock_kernel pair in the ioctl method. It plainly wasn't protecting anything. Signed-off-by: Matthew Wilcox <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2006-01-22[PARISC] Use kzalloc and other janitor-style cleanupsHelge Deller1-17/+18
Helge, o Convert a bunch of kmalloc/memset uses to kzalloc. o pci.c: Add some __read_mostly annotations. o pci.c: Move constant pci_post_reset_delay to asm/pci.h o grfioctl.h: Add A4450A to comment of CRT_ID_VISUALIZE_EG. o Add some consts to perf.c/perf_images.h Matthew, o sticore.c: Add some consts to suppress compile warnings. Signed-off-by: Helge Deller <[email protected]> Signed-off-by: Matthew Wilcox <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2006-01-11[PATCH] capable/capability.h (arch/)Randy Dunlap1-0/+1
arch: Use <linux/capability.h> where capable() is used. Signed-off-by: Randy Dunlap <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2006-01-10[PARISC] Add __read_mostly section for pariscHelge Deller1-3/+3
Flag a whole bunch of things as __read_mostly on parisc. Also flag a few branches as unlikely() and cleanup a bit of code. Signed-off-by: Helge Deller <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2005-11-17[PARISC] move PA perf driver over to ->compat_ioctlChristoph Hellwig1-13/+20
Move PA perf driver over to ->compat_ioctl. Signed-off-by: Christoph Hellwig <[email protected]> Acked-by: Randolph Chung <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2005-10-21[PARISC] Convert parisc_device to use struct resource for hpaMatthew Wilcox1-5/+7
Convert pa_dev->hpa from an unsigned long to a struct resource. Signed-off-by: Matthew Wilcox <[email protected]> Fix up users of ->hpa to use ->hpa.start instead. Signed-off-by: Matthew Wilcox <[email protected]> Signed-off-by: Kyle McMartin <[email protected]>
2005-04-16Linux-2.6.12-rc2Linus Torvalds1-0/+841
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!