Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
4d5661a0
Commit
4d5661a0
authored
Aug 23, 2004
by
Deepak Saxena
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux.bkbits.net/linux-2.5
into plexity.net:/home/dsaxena/src/linux-2.5-bk
parents
84eecd35
7d22476d
Changes
18
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
87 additions
and
85 deletions
+87
-85
arch/ppc64/kernel/pmac_low_i2c.c
arch/ppc64/kernel/pmac_low_i2c.c
+1
-1
drivers/char/agp/Kconfig
drivers/char/agp/Kconfig
+1
-1
drivers/char/agp/amd64-agp.c
drivers/char/agp/amd64-agp.c
+1
-1
drivers/char/agp/intel-agp.c
drivers/char/agp/intel-agp.c
+49
-51
drivers/char/agp/intel-mch-agp.c
drivers/char/agp/intel-mch-agp.c
+1
-1
drivers/char/agp/sis-agp.c
drivers/char/agp/sis-agp.c
+4
-0
drivers/char/agp/via-agp.c
drivers/char/agp/via-agp.c
+1
-1
drivers/char/random.c
drivers/char/random.c
+1
-1
drivers/ide/ide.c
drivers/ide/ide.c
+1
-1
drivers/ide/ppc/pmac.c
drivers/ide/ppc/pmac.c
+4
-4
drivers/usb/host/ehci.h
drivers/usb/host/ehci.h
+1
-1
drivers/video/modedb.c
drivers/video/modedb.c
+1
-1
fs/cifs/cifsglob.h
fs/cifs/cifsglob.h
+9
-9
fs/cifs/connect.c
fs/cifs/connect.c
+5
-5
include/asm-ppc64/checksum.h
include/asm-ppc64/checksum.h
+2
-2
include/linux/cpu.h
include/linux/cpu.h
+1
-1
include/linux/reiserfs_fs.h
include/linux/reiserfs_fs.h
+3
-3
include/linux/reiserfs_fs_i.h
include/linux/reiserfs_fs_i.h
+1
-1
No files found.
arch/ppc64/kernel/pmac_low_i2c.c
View file @
4d5661a0
...
...
@@ -50,7 +50,7 @@ struct low_i2c_host
struct
device_node
*
np
;
/* OF device node */
struct
semaphore
mutex
;
/* Access mutex for use by i2c-keywest */
low_i2c_func_t
func
;
/* Access function */
int
is_open
:
1
;
/* Poor man's access control */
unsigned
is_open
:
1
;
/* Poor man's access control */
int
mode
;
/* Current mode */
int
channel
;
/* Current channel */
int
num_channels
;
/* Number of channels */
...
...
drivers/char/agp/Kconfig
View file @
4d5661a0
...
...
@@ -130,7 +130,7 @@ config AGP_VIA
depends on AGP && X86 && !X86_64
help
This option gives you AGP support for the GLX component of
XFree86 4.x on VIA M
PV
3/Apollo Pro chipsets.
XFree86 4.x on VIA M
VP
3/Apollo Pro chipsets.
You should say Y here if you use XFree86 3.3.6 or 4.x and want to
use GLX or DRI. If unsure, say N.
...
...
drivers/char/agp/amd64-agp.c
View file @
4d5661a0
...
...
@@ -675,4 +675,4 @@ module_exit(agp_amd64_cleanup);
MODULE_AUTHOR
(
"Dave Jones <davej@codemonkey.org.uk>, Andi Kleen"
);
MODULE_PARM
(
agp_try_unsupported
,
"1i"
);
MODULE_LICENSE
(
"GPL
and additional rights
"
);
MODULE_LICENSE
(
"GPL"
);
drivers/char/agp/intel-agp.c
View file @
4d5661a0
This diff is collapsed.
Click to expand it.
drivers/char/agp/intel-mch-agp.c
View file @
4d5661a0
...
...
@@ -633,5 +633,5 @@ module_init(agp_intelmch_init);
module_exit
(
agp_intelmch_cleanup
);
MODULE_AUTHOR
(
"Dave Jones <davej@codemonkey.org.uk>"
);
MODULE_LICENSE
(
"GPL
and additional rights
"
);
MODULE_LICENSE
(
"GPL"
);
drivers/char/agp/sis-agp.c
View file @
4d5661a0
...
...
@@ -168,6 +168,10 @@ static struct agp_device_ids sis_agp_device_ids[] __devinitdata =
.
device_id
=
PCI_DEVICE_ID_SI_630
,
.
chipset_name
=
"630"
,
},
{
.
device_id
=
PCI_DEVICE_ID_SI_635
,
.
chipset_name
=
"635"
,
},
{
.
device_id
=
PCI_DEVICE_ID_SI_645
,
.
chipset_name
=
"645"
,
...
...
drivers/char/agp/via-agp.c
View file @
4d5661a0
...
...
@@ -503,5 +503,5 @@ static void __exit agp_via_cleanup(void)
module_init
(
agp_via_init
);
module_exit
(
agp_via_cleanup
);
MODULE_LICENSE
(
"GPL
and additional rights
"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_AUTHOR
(
"Dave Jones <davej@codemonkey.org.uk>"
);
drivers/char/random.c
View file @
4d5661a0
...
...
@@ -783,7 +783,7 @@ static void batch_entropy_process(void *private_)
struct
timer_rand_state
{
__u32
last_time
;
__s32
last_delta
,
last_delta2
;
int
dont_count_entropy
:
1
;
unsigned
dont_count_entropy
:
1
;
};
static
struct
timer_rand_state
keyboard_timer_state
;
...
...
drivers/ide/ide.c
View file @
4d5661a0
...
...
@@ -442,7 +442,7 @@ u8 ide_dump_status (ide_drive_t *drive, const char *msg, u8 stat)
int
opcode
=
0x100
;
spin_lock
(
&
ide_lock
);
rq
=
0
;
rq
=
NULL
;
if
(
HWGROUP
(
drive
))
rq
=
HWGROUP
(
drive
)
->
rq
;
spin_unlock
(
&
ide_lock
);
...
...
drivers/ide/ppc/pmac.c
View file @
4d5661a0
...
...
@@ -62,10 +62,10 @@ typedef struct pmac_ide_hwif {
int
irq
;
int
kind
;
int
aapl_bus_id
;
int
cable_80
:
1
;
int
mediabay
:
1
;
int
broken_dma
:
1
;
int
broken_dma_warn
:
1
;
unsigned
cable_80
:
1
;
unsigned
mediabay
:
1
;
unsigned
broken_dma
:
1
;
unsigned
broken_dma_warn
:
1
;
struct
device_node
*
node
;
struct
macio_dev
*
mdev
;
u32
timings
[
4
];
...
...
drivers/usb/host/ehci.h
View file @
4d5661a0
...
...
@@ -52,7 +52,7 @@ struct ehci_hcd { /* one per controller */
/* async schedule support */
struct
ehci_qh
*
async
;
struct
ehci_qh
*
reclaim
;
int
reclaim_ready
:
1
;
unsigned
reclaim_ready
:
1
;
/* periodic schedule support */
#define DEFAULT_I_TDPS 1024
/* some HCs can do less */
...
...
drivers/video/modedb.c
View file @
4d5661a0
...
...
@@ -583,7 +583,7 @@ void fb_var_to_videomode(struct fb_videomode *mode,
{
u32
pixclock
,
hfreq
,
htotal
,
vtotal
;
(
char
*
)
mode
->
name
=
NULL
;
mode
->
name
=
NULL
;
mode
->
xres
=
var
->
xres
;
mode
->
yres
=
var
->
yres
;
mode
->
pixclock
=
var
->
pixclock
;
...
...
fs/cifs/cifsglob.h
View file @
4d5661a0
...
...
@@ -126,7 +126,7 @@ struct TCP_Server_Info {
enum
protocolEnum
protocolType
;
char
versionMajor
;
char
versionMinor
;
int
svlocal
:
1
;
/* local server or remote */
unsigned
svlocal
:
1
;
/* local server or remote */
atomic_t
socketUseCount
;
/* number of open cifs sessions on socket */
atomic_t
inFlight
;
/* number of requests on the wire to server */
enum
statusEnum
tcpStatus
;
/* what we think the status is */
...
...
@@ -222,7 +222,7 @@ struct cifsTconInfo {
FILE_SYSTEM_DEVICE_INFO
fsDevInfo
;
FILE_SYSTEM_ATTRIBUTE_INFO
fsAttrInfo
;
/* ok if file system name truncated */
FILE_SYSTEM_UNIX_INFO
fsUnixInfo
;
int
retry
:
1
;
unsigned
retry
:
1
;
/* BB add field for back pointer to sb struct? */
};
...
...
@@ -250,10 +250,10 @@ struct cifsFileInfo {
/* lock scope id (0 if none) */
struct
file
*
pfile
;
/* needed for writepage */
struct
inode
*
pInode
;
/* needed for oplock break */
int
endOfSearch
:
1
;
/* we have reached end of search */
int
closePend
:
1
;
/* file is marked to close */
int
emptyDir
:
1
;
int
invalidHandle
:
1
;
/* file closed via session abend */
unsigned
endOfSearch
:
1
;
/* we have reached end of search */
unsigned
closePend
:
1
;
/* file is marked to close */
unsigned
emptyDir
:
1
;
unsigned
invalidHandle
:
1
;
/* file closed via session abend */
struct
semaphore
fh_sem
;
/* prevents reopen race after dead ses*/
char
*
search_resume_name
;
unsigned
int
resume_name_length
;
...
...
@@ -272,9 +272,9 @@ struct cifsInodeInfo {
__u32
cifsAttrs
;
/* e.g. DOS archive bit, sparse, compressed, system */
atomic_t
inUse
;
/* num concurrent users (local openers cifs) of file*/
unsigned
long
time
;
/* jiffies of last update/check of inode */
int
clientCanCacheRead
:
1
;
/* read oplock */
int
clientCanCacheAll
:
1
;
/* read and writebehind oplock */
int
oplockPending
:
1
;
unsigned
clientCanCacheRead
:
1
;
/* read oplock */
unsigned
clientCanCacheAll
:
1
;
/* read and writebehind oplock */
unsigned
oplockPending
:
1
;
struct
inode
vfs_inode
;
};
...
...
fs/cifs/connect.c
View file @
4d5661a0
...
...
@@ -64,11 +64,11 @@ struct smb_vol {
gid_t
linux_gid
;
mode_t
file_mode
;
mode_t
dir_mode
;
int
rw
:
1
;
int
retry
:
1
;
int
intr
:
1
;
int
setuids
:
1
;
int
noperm
:
1
;
unsigned
rw
:
1
;
unsigned
retry
:
1
;
unsigned
intr
:
1
;
unsigned
setuids
:
1
;
unsigned
noperm
:
1
;
unsigned
int
rsize
;
unsigned
int
wsize
;
unsigned
int
sockopt
;
...
...
include/asm-ppc64/checksum.h
View file @
4d5661a0
...
...
@@ -84,10 +84,10 @@ static inline unsigned short ip_compute_csum(unsigned char * buff, int len)
}
#define csum_partial_copy_from_user(src, dst, len, sum, errp) \
csum_partial_copy_generic((src), (dst), (len), (sum), (errp),
0
)
csum_partial_copy_generic((src), (dst), (len), (sum), (errp),
NULL
)
#define csum_partial_copy_nocheck(src, dst, len, sum) \
csum_partial_copy_generic((src), (dst), (len), (sum),
0, 0
)
csum_partial_copy_generic((src), (dst), (len), (sum),
NULL, NULL
)
static
inline
u32
csum_tcpudp_nofold
(
u32
saddr
,
u32
daddr
,
...
...
include/linux/cpu.h
View file @
4d5661a0
...
...
@@ -74,7 +74,7 @@ int cpu_down(unsigned int cpu);
#define hotcpu_notifier(fn, pri)
/* CPUs don't go offline once they're online w/o CONFIG_HOTPLUG_CPU */
#define cpu_is_offline(cpu) 0
static
inline
int
cpu_is_offline
(
int
cpu
)
{
return
0
;
}
#endif
#endif
/* _LINUX_CPU_H_ */
include/linux/reiserfs_fs.h
View file @
4d5661a0
...
...
@@ -1734,7 +1734,7 @@ struct reiserfs_transaction_handle {
int
t_blocks_allocated
;
/* number of blocks this writer allocated */
unsigned
long
t_trans_id
;
/* sanity check, equals the current trans id */
void
*
t_handle_save
;
/* save existing current->journal_info */
int
displace_new_blocks
:
1
;
/* if new block allocation occurres, that block
unsigned
displace_new_blocks
:
1
;
/* if new block allocation occurres, that block
should be displaced from others */
}
;
...
...
@@ -2154,9 +2154,9 @@ struct buffer_head * get_FEB (struct tree_balance *);
int
prealloc_size
;
/* is set in determine_prealloc_size() function, used by underlayed
* function that do actual allocation */
int
formatted_node
:
1
;
/* the allocator uses different polices for getting disk space for
unsigned
formatted_node
:
1
;
/* the allocator uses different polices for getting disk space for
* formatted/unformatted blocks with/without preallocation */
int
preallocate
:
1
;
unsigned
preallocate
:
1
;
};
typedef
struct
__reiserfs_blocknr_hint
reiserfs_blocknr_hint_t
;
...
...
include/linux/reiserfs_fs_i.h
View file @
4d5661a0
...
...
@@ -45,7 +45,7 @@ struct reiserfs_inode_info {
struct
list_head
i_prealloc_list
;
/* per-transaction list of inodes which
* have preallocated blocks */
int
new_packing_locality
:
1
;
/* new_packig_locality is created; new blocks
unsigned
new_packing_locality
:
1
;
/* new_packig_locality is created; new blocks
* for the contents of this directory should be
* displaced */
...
...
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