aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/mm
diff options
context:
space:
mode:
authorNathan Fontenot <nfont@linux.vnet.ibm.com>2013-04-24 02:07:39 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2013-04-26 02:08:26 -0400
commite04fa61214a3e586282490af7e1b023522c1472a (patch)
tree44efd1187b1b9d77341cec4b80c4355a36a73afb /arch/powerpc/mm
parent1b1218d32efdc81134eeb908935a18659cb3d9d7 (diff)
powerpc/pseries: Add /proc interface to control topology updates
There are instances in which we do not want topology updates to occur. In order to allow this a /proc interface (/proc/powerpc/topology_updates) is introduced so that topology updates can be enabled and disabled. This patch also adds a prrn_is_enabled() call so that PRRN events are handled in the kernel only if topology updating is enabled. Signed-off-by: Nathan Fontenot <nfont@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r--arch/powerpc/mm/numa.c62
1 files changed, 61 insertions, 1 deletions
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c
index 908699fb61c9..2d13f90476bd 100644
--- a/arch/powerpc/mm/numa.c
+++ b/arch/powerpc/mm/numa.c
@@ -23,6 +23,9 @@
23#include <linux/cpuset.h> 23#include <linux/cpuset.h>
24#include <linux/node.h> 24#include <linux/node.h>
25#include <linux/stop_machine.h> 25#include <linux/stop_machine.h>
26#include <linux/proc_fs.h>
27#include <linux/seq_file.h>
28#include <linux/uaccess.h>
26#include <asm/sparsemem.h> 29#include <asm/sparsemem.h>
27#include <asm/prom.h> 30#include <asm/prom.h>
28#include <asm/smp.h> 31#include <asm/smp.h>
@@ -1585,7 +1588,6 @@ int start_topology_update(void)
1585 1588
1586 return rc; 1589 return rc;
1587} 1590}
1588__initcall(start_topology_update);
1589 1591
1590/* 1592/*
1591 * Disable polling for VPHN associativity changes. 1593 * Disable polling for VPHN associativity changes.
@@ -1604,4 +1606,62 @@ int stop_topology_update(void)
1604 1606
1605 return rc; 1607 return rc;
1606} 1608}
1609
1610int prrn_is_enabled(void)
1611{
1612 return prrn_enabled;
1613}
1614
1615static int topology_read(struct seq_file *file, void *v)
1616{
1617 if (vphn_enabled || prrn_enabled)
1618 seq_puts(file, "on\n");
1619 else
1620 seq_puts(file, "off\n");
1621
1622 return 0;
1623}
1624
1625static int topology_open(struct inode *inode, struct file *file)
1626{
1627 return single_open(file, topology_read, NULL);
1628}
1629
1630static ssize_t topology_write(struct file *file, const char __user *buf,
1631 size_t count, loff_t *off)
1632{
1633 char kbuf[4]; /* "on" or "off" plus null. */
1634 int read_len;
1635
1636 read_len = count < 3 ? count : 3;
1637 if (copy_from_user(kbuf, buf, read_len))
1638 return -EINVAL;
1639
1640 kbuf[read_len] = '\0';
1641
1642 if (!strncmp(kbuf, "on", 2))
1643 start_topology_update();
1644 else if (!strncmp(kbuf, "off", 3))
1645 stop_topology_update();
1646 else
1647 return -EINVAL;
1648
1649 return count;
1650}
1651
1652static const struct file_operations topology_ops = {
1653 .read = seq_read,
1654 .write = topology_write,
1655 .open = topology_open,
1656 .release = single_release
1657};
1658
1659static int topology_update_init(void)
1660{
1661 start_topology_update();
1662 proc_create("powerpc/topology_updates", 644, NULL, &topology_ops);
1663
1664 return 0;
1665}
1666device_initcall(topology_update_init);
1607#endif /* CONFIG_PPC_SPLPAR */ 1667#endif /* CONFIG_PPC_SPLPAR */