Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 85675
b: refs/heads/master
c: 08f0105
h: refs/heads/master
i:
  85673: 20f4bb1
  85671: 22ad79b
v: v3
  • Loading branch information
Harvey Harrison authored and Jeff Garzik committed Feb 15, 2008
1 parent 8672588 commit f1fddfb
Show file tree
Hide file tree
Showing 338 changed files with 5,405 additions and 11,005 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: 101142c37be8e5af9b847860219217e6b958c739
refs/heads/master: 08f01058fe8fcf0d4d69d96d667c51d52859b31d
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/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 25
EXTRAVERSION = -rc2
NAME = Funky Weasel is Jiggy wit it
EXTRAVERSION = -rc1
NAME = Arr Matey! A Hairy Bilge Rat!

# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
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 f1fddfb

Please sign in to comment.