Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 85667
b: refs/heads/master
c: 8e60029
h: refs/heads/master
i:
  85665: 3c158a5
  85663: 2cd5cea
v: v3
  • Loading branch information
Jeff Layton authored and Trond Myklebust committed Feb 14, 2008
1 parent 7a47033 commit 6521cdd
Show file tree
Hide file tree
Showing 333 changed files with 5,398 additions and 10,987 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: f6866fecd6fd8e44a6715da09844a4fd1b8484da
refs/heads/master: 8e60029f403781b8a63b7ffdb7dc1faff6ca651e
2 changes: 0 additions & 2 deletions trunk/Documentation/00-INDEX
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ cpu-hotplug.txt
- document describing CPU hotplug support in the Linux kernel.
cpu-load.txt
- document describing how CPU load statistics are collected.
cpuidle/
- info on CPU_IDLE, CPU idle state management subsystem.
cpusets.txt
- documents the cpusets feature; assign CPUs and Mem to a set of tasks.
cputopology.txt
Expand Down
23 changes: 0 additions & 23 deletions trunk/Documentation/cpuidle/core.txt

This file was deleted.

31 changes: 0 additions & 31 deletions trunk/Documentation/cpuidle/driver.txt

This file was deleted.

29 changes: 0 additions & 29 deletions trunk/Documentation/cpuidle/governor.txt

This file was deleted.

79 changes: 0 additions & 79 deletions trunk/Documentation/cpuidle/sysfs.txt

This file was deleted.

9 changes: 4 additions & 5 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -1255,8 +1255,8 @@ W: http://linux-net.osdl.org/index.php/DCCP
S: Maintained

DECnet NETWORK LAYER
P: Christine Caulfield
M: christine.caulfield@googlemail.com
P: Patrick Caulfield
M: patrick@tykepenguin.com
W: http://linux-decnet.sourceforge.net
L: linux-decnet-user@lists.sourceforge.net
S: Maintained
Expand Down Expand Up @@ -1318,8 +1318,8 @@ L: linux-kernel@vger.kernel.org
S: Maintained

DISTRIBUTED LOCK MANAGER
P: Christine Caulfield
M: ccaulfie@redhat.com
P: Patrick Caulfield
M: pcaulfie@redhat.com
P: David Teigland
M: teigland@redhat.com
L: cluster-devel@redhat.com
Expand Down Expand Up @@ -1616,7 +1616,6 @@ S: Maintained
FILESYSTEMS (VFS and infrastructure)
P: Alexander Viro
M: viro@zeniv.linux.org.uk
L: linux-fsdevel@vger.kernel.org
S: Maintained

FIREWIRE SUBSYSTEM (drivers/firewire, <linux/firewire*.h>)
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/alpha/kernel/osf_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ osf_statfs(char __user *path, struct osf_statfs __user *buffer, unsigned long bu

retval = user_path_walk(path, &nd);
if (!retval) {
retval = do_osf_statfs(nd.path.dentry, buffer, bufsiz);
path_put(&nd.path);
retval = do_osf_statfs(nd.dentry, buffer, bufsiz);
path_release(&nd);
}
return retval;
}
Expand Down
12 changes: 7 additions & 5 deletions trunk/arch/blackfin/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,15 @@ static void decode_address(char *buf, unsigned long address)
struct vm_area_struct *vma = vml->vma;

if (address >= vma->vm_start && address < vma->vm_end) {
char _tmpbuf[256];
char *name = p->comm;
struct file *file = vma->vm_file;

if (file)
name = d_path(&file->f_path, _tmpbuf,
sizeof(_tmpbuf));
if (file) {
char _tmpbuf[256];
name = d_path(file->f_dentry,
file->f_vfsmnt,
_tmpbuf,
sizeof(_tmpbuf));
}

/* FLAT does not have its text aligned to the start of
* the map while FDPIC ELF does ...
Expand Down
Loading

0 comments on commit 6521cdd

Please sign in to comment.