-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 116535 b: refs/heads/master c: fc8c2d7 h: refs/heads/master i: 116533: 4701d3c 116531: abf1c63 116527: 3611675 v: v3
- Loading branch information
Russ Anderson
authored and
Ingo Molnar
committed
Oct 16, 2008
1 parent
66c7127
commit 9f06202
Showing
4 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 922402f15a85f7a064926eb1db68cc52bc4d4a91 | ||
refs/heads/master: fc8c2d763bacc02962048fa042e287debb1416aa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* This file supports the /sys/firmware/sgi_uv interfaces for SGI UV. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved. | ||
* Copyright (c) Russ Anderson | ||
*/ | ||
|
||
#include <linux/sysdev.h> | ||
#include <asm/uv/bios.h> | ||
|
||
struct kobject *sgi_uv_kobj; | ||
|
||
static ssize_t partition_id_show(struct kobject *kobj, | ||
struct kobj_attribute *attr, char *buf) | ||
{ | ||
return snprintf(buf, PAGE_SIZE, "%ld\n", sn_partition_id); | ||
} | ||
|
||
static ssize_t coherence_id_show(struct kobject *kobj, | ||
struct kobj_attribute *attr, char *buf) | ||
{ | ||
return snprintf(buf, PAGE_SIZE, "%ld\n", partition_coherence_id()); | ||
} | ||
|
||
static struct kobj_attribute partition_id_attr = | ||
__ATTR(partition_id, S_IRUGO, partition_id_show, NULL); | ||
|
||
static struct kobj_attribute coherence_id_attr = | ||
__ATTR(coherence_id, S_IRUGO, coherence_id_show, NULL); | ||
|
||
|
||
static int __init sgi_uv_sysfs_init(void) | ||
{ | ||
unsigned long ret; | ||
|
||
if (!sgi_uv_kobj) | ||
sgi_uv_kobj = kobject_create_and_add("sgi_uv", firmware_kobj); | ||
if (!sgi_uv_kobj) { | ||
printk(KERN_WARNING "kobject_create_and_add sgi_uv failed \n"); | ||
return -EINVAL; | ||
} | ||
|
||
ret = sysfs_create_file(sgi_uv_kobj, &partition_id_attr.attr); | ||
if (ret) { | ||
printk(KERN_WARNING "sysfs_create_file partition_id failed \n"); | ||
return ret; | ||
} | ||
|
||
ret = sysfs_create_file(sgi_uv_kobj, &coherence_id_attr.attr); | ||
if (ret) { | ||
printk(KERN_WARNING "sysfs_create_file coherence_id failed \n"); | ||
return ret; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
device_initcall(sgi_uv_sysfs_init); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters