Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
cf70a6f2
Commit
cf70a6f2
authored
Feb 20, 2006
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes.b8' of
git://git.kernel.org/pub/scm/linux/kernel/git/viro/bird
parents
0b1fc9b8
ad6b97fc
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
27 deletions
+20
-27
arch/m68k/kernel/process.c
arch/m68k/kernel/process.c
+3
-0
drivers/ieee1394/sbp2.c
drivers/ieee1394/sbp2.c
+1
-9
fs/proc/inode.c
fs/proc/inode.c
+0
-4
fs/proc/root.c
fs/proc/root.c
+9
-8
include/asm-m68k/irq.h
include/asm-m68k/irq.h
+1
-1
include/asm-m68k/raw_io.h
include/asm-m68k/raw_io.h
+1
-0
kernel/auditsc.c
kernel/auditsc.c
+3
-3
lib/iomap_copy.c
lib/iomap_copy.c
+1
-1
net/ipv6/ip6_tunnel.c
net/ipv6/ip6_tunnel.c
+1
-1
No files found.
arch/m68k/kernel/process.c
View file @
cf70a6f2
...
...
@@ -129,6 +129,9 @@ void machine_power_off(void)
for
(;;);
}
void
(
*
pm_power_off
)(
void
)
=
machine_power_off
;
EXPORT_SYMBOL
(
pm_power_off
);
void
show_regs
(
struct
pt_regs
*
regs
)
{
printk
(
"
\n
"
);
...
...
drivers/ieee1394/sbp2.c
View file @
cf70a6f2
...
...
@@ -2082,9 +2082,7 @@ static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
SBP2_DEBUG
(
"sbp2_check_sbp2_response"
);
switch
(
SCpnt
->
cmnd
[
0
])
{
case
INQUIRY
:
if
(
SCpnt
->
cmnd
[
0
]
==
INQUIRY
&&
(
SCpnt
->
cmnd
[
1
]
&
3
)
==
0
)
{
/*
* Make sure data length is ok. Minimum length is 36 bytes
*/
...
...
@@ -2097,13 +2095,7 @@ static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
*/
scsi_buf
[
2
]
|=
2
;
scsi_buf
[
3
]
=
(
scsi_buf
[
3
]
&
0xf0
)
|
2
;
break
;
default:
break
;
}
return
;
}
/*
...
...
fs/proc/inode.c
View file @
cf70a6f2
...
...
@@ -204,10 +204,6 @@ int proc_fill_super(struct super_block *s, void *data, int silent)
root_inode
=
proc_get_inode
(
s
,
PROC_ROOT_INO
,
&
proc_root
);
if
(
!
root_inode
)
goto
out_no_root
;
/*
* Fixup the root inode's nlink value
*/
root_inode
->
i_nlink
+=
nr_processes
();
root_inode
->
i_uid
=
0
;
root_inode
->
i_gid
=
0
;
s
->
s_root
=
d_alloc_root
(
root_inode
);
...
...
fs/proc/root.c
View file @
cf70a6f2
...
...
@@ -80,16 +80,16 @@ void __init proc_root_init(void)
proc_bus
=
proc_mkdir
(
"bus"
,
NULL
);
}
static
struct
dentry
*
proc_root_lookup
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
static
int
proc_root_getattr
(
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
,
struct
kstat
*
stat
)
{
/*
* nr_threads is actually protected by the tasklist_lock;
* however, it's conventional to do reads, especially for
* reporting, without any locking whatsoever.
*/
if
(
dir
->
i_ino
==
PROC_ROOT_INO
)
/* check for safety... */
dir
->
i_nlink
=
proc_root
.
nlink
+
nr_threads
;
generic_fillattr
(
dentry
->
d_inode
,
stat
);
stat
->
nlink
=
proc_root
.
nlink
+
nr_processes
();
return
0
;
}
static
struct
dentry
*
proc_root_lookup
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
if
(
!
proc_lookup
(
dir
,
dentry
,
nd
))
{
return
NULL
;
}
...
...
@@ -134,6 +134,7 @@ static struct file_operations proc_root_operations = {
*/
static
struct
inode_operations
proc_root_inode_operations
=
{
.
lookup
=
proc_root_lookup
,
.
getattr
=
proc_root_getattr
,
};
/*
...
...
include/asm-m68k/irq.h
View file @
cf70a6f2
...
...
@@ -79,7 +79,7 @@ static __inline__ int irq_canonicalize(int irq)
extern
void
(
*
enable_irq
)(
unsigned
int
);
extern
void
(
*
disable_irq
)(
unsigned
int
);
#define
enable_irq_nosync en
able_irq
#define
disable_irq_nosync dis
able_irq
struct
pt_regs
;
...
...
include/asm-m68k/raw_io.h
View file @
cf70a6f2
...
...
@@ -336,6 +336,7 @@ static inline void raw_outsw_swapw(volatile u16 __iomem *port, const u16 *buf,
:
"d0"
,
"a0"
,
"a1"
,
"d6"
);
}
#define __raw_writel raw_outl
#endif
/* __KERNEL__ */
...
...
kernel/auditsc.c
View file @
cf70a6f2
...
...
@@ -841,7 +841,7 @@ static void audit_log_exit(struct audit_context *context, gfp_t gfp_mask)
for
(
aux
=
context
->
aux
;
aux
;
aux
=
aux
->
next
)
{
ab
=
audit_log_start
(
context
,
GFP_KERNEL
,
aux
->
type
);
ab
=
audit_log_start
(
context
,
gfp_mask
,
aux
->
type
);
if
(
!
ab
)
continue
;
/* audit_panic has been called */
...
...
@@ -878,14 +878,14 @@ static void audit_log_exit(struct audit_context *context, gfp_t gfp_mask)
}
if
(
context
->
pwd
&&
context
->
pwdmnt
)
{
ab
=
audit_log_start
(
context
,
GFP_KERNEL
,
AUDIT_CWD
);
ab
=
audit_log_start
(
context
,
gfp_mask
,
AUDIT_CWD
);
if
(
ab
)
{
audit_log_d_path
(
ab
,
"cwd="
,
context
->
pwd
,
context
->
pwdmnt
);
audit_log_end
(
ab
);
}
}
for
(
i
=
0
;
i
<
context
->
name_count
;
i
++
)
{
ab
=
audit_log_start
(
context
,
GFP_KERNEL
,
AUDIT_PATH
);
ab
=
audit_log_start
(
context
,
gfp_mask
,
AUDIT_PATH
);
if
(
!
ab
)
continue
;
/* audit_panic has been called */
...
...
lib/iomap_copy.c
View file @
cf70a6f2
...
...
@@ -15,8 +15,8 @@
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <linux/io.h>
#include <linux/module.h>
#include <linux/io.h>
/**
* __iowrite32_copy - copy data to MMIO space, in 32-bit units
...
...
net/ipv6/ip6_tunnel.c
View file @
cf70a6f2
...
...
@@ -458,7 +458,7 @@ ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
mtu
=
IPV6_MIN_MTU
;
t
->
dev
->
mtu
=
mtu
;
if
((
len
=
sizeof
(
*
ipv6h
)
+
ipv6h
->
payload_len
)
>
mtu
)
{
if
((
len
=
sizeof
(
*
ipv6h
)
+
ntohs
(
ipv6h
->
payload_len
)
)
>
mtu
)
{
rel_type
=
ICMPV6_PKT_TOOBIG
;
rel_code
=
0
;
rel_info
=
mtu
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment