Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 696) sorted by relevance

12345678910>>...28

/linux-2.4.37.9/arch/mips/kernel/
Dcpu-probe.c181 c->options = MIPS_CPU_TLB | MIPS_CPU_NOFPUEX; in cpu_probe_legacy()
183 c->options |= MIPS_CPU_FPU; in cpu_probe_legacy()
195 c->options = MIPS_CPU_TLB | MIPS_CPU_NOFPUEX; in cpu_probe_legacy()
197 c->options |= MIPS_CPU_FPU; in cpu_probe_legacy()
214 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | in cpu_probe_legacy()
251 c->options = R4K_OPTS; in cpu_probe_legacy()
257 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | in cpu_probe_legacy()
264 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC; in cpu_probe_legacy()
277 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC; in cpu_probe_legacy()
283 c->options = MIPS_CPU_TLB; in cpu_probe_legacy()
[all …]
/linux-2.4.37.9/include/asm-mips/
Dprocessor.h62 unsigned long options; member
78 #define cpu_has_tlb (cpu_data[0].options & MIPS_CPU_TLB)
79 #define cpu_has_4kex (cpu_data[0].options & MIPS_CPU_4KEX)
80 #define cpu_has_4ktlb (cpu_data[0].options & MIPS_CPU_4KTLB)
81 #define cpu_has_fpu (cpu_data[0].options & MIPS_CPU_FPU)
82 #define cpu_has_32fpr (cpu_data[0].options & MIPS_CPU_32FPR)
83 #define cpu_has_counter (cpu_data[0].options & MIPS_CPU_COUNTER)
84 #define cpu_has_watch (cpu_data[0].options & MIPS_CPU_WATCH)
85 #define cpu_has_mips16 (cpu_data[0].options & MIPS_CPU_MIPS16)
86 #define cpu_has_divec (cpu_data[0].options & MIPS_CPU_DIVEC)
[all …]
/linux-2.4.37.9/drivers/net/
Dppp_deflate.c59 static void *z_comp_alloc __P((unsigned char *options, int opt_len));
60 static void *z_decomp_alloc __P((unsigned char *options, int opt_len));
63 static int z_comp_init __P((void *state, unsigned char *options,
66 static int z_decomp_init __P((void *state, unsigned char *options,
98 z_comp_alloc(options, opt_len) in z_comp_alloc() argument
99 unsigned char *options; in z_comp_alloc()
106 || (options[0] != CI_DEFLATE && options[0] != CI_DEFLATE_DRAFT)
107 || options[1] != CILEN_DEFLATE
108 || DEFLATE_METHOD(options[2]) != DEFLATE_METHOD_VAL
109 || options[3] != DEFLATE_CHK_SEQUENCE)
[all …]
Dbsd_comp.c166 static void *bsd_alloc(unsigned char *options, int opt_len, int decomp);
167 static void *bsd_comp_alloc (unsigned char *options, int opt_len);
168 static void *bsd_decomp_alloc (unsigned char *options, int opt_len);
170 static int bsd_init (void *db, unsigned char *options,
172 static int bsd_comp_init (void *state, unsigned char *options,
174 static int bsd_decomp_init (void *state, unsigned char *options,
356 static void *bsd_alloc (unsigned char *options, int opt_len, int decomp) in bsd_alloc() argument
362 if (opt_len != 3 || options[0] != CI_BSD_COMPRESS || options[1] != 3 in bsd_alloc()
363 || BSD_VERSION(options[2]) != BSD_CURRENT_VERSION) in bsd_alloc()
368 bits = BSD_NBITS(options[2]); in bsd_alloc()
[all …]
/linux-2.4.37.9/include/asm-mips64/
Dprocessor.h94 unsigned long options; member
110 #define cpu_has_tlb (cpu_data[0].options & MIPS_CPU_TLB)
111 #define cpu_has_4kex (cpu_data[0].options & MIPS_CPU_4KEX)
112 #define cpu_has_4ktlb (cpu_data[0].options & MIPS_CPU_4KTLB)
113 #define cpu_has_fpu (cpu_data[0].options & MIPS_CPU_FPU)
114 #define cpu_has_32fpr (cpu_data[0].options & MIPS_CPU_32FPR)
115 #define cpu_has_counter (cpu_data[0].options & MIPS_CPU_COUNTER)
116 #define cpu_has_watch (cpu_data[0].options & MIPS_CPU_WATCH)
117 #define cpu_has_mips16 (cpu_data[0].options & MIPS_CPU_MIPS16)
118 #define cpu_has_divec (cpu_data[0].options & MIPS_CPU_DIVEC)
[all …]
/linux-2.4.37.9/arch/mips64/kernel/
Dcpu-probe.c475 c->options = MIPS_CPU_TLB | MIPS_CPU_NOFPUEX; in cpu_probe_legacy()
477 c->options |= MIPS_CPU_FPU; in cpu_probe_legacy()
489 c->options = MIPS_CPU_TLB | MIPS_CPU_NOFPUEX; in cpu_probe_legacy()
491 c->options |= MIPS_CPU_FPU; in cpu_probe_legacy()
508 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | in cpu_probe_legacy()
545 c->options = R4K_OPTS; in cpu_probe_legacy()
551 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | in cpu_probe_legacy()
558 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC; in cpu_probe_legacy()
571 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC; in cpu_probe_legacy()
577 c->options = MIPS_CPU_TLB; in cpu_probe_legacy()
[all …]
/linux-2.4.37.9/arch/sh/kernel/
Dsetup.c49 static int kgdb_parse_options(char *options);
161 static int __init sh_console_setup(struct console *co, char *options) in sh_console_setup() argument
602 static int __init kgdb_parse_options(char *options) in kgdb_parse_options() argument
610 if (!memcmp(options, "tty", 3)) { in kgdb_parse_options()
613 while (map && memcmp(options, map->name, map->namelen)) in kgdb_parse_options()
617 KGDB_PRINTK("unknown port spec in %s\n", options); in kgdb_parse_options()
623 kgdb_portnum = options[map->namelen] - '0'; in kgdb_parse_options()
624 options += map->namelen + 1; in kgdb_parse_options()
626 options = (*options == ',') ? options+1 : options; in kgdb_parse_options()
629 baud = simple_strtoul(options, &options, 10); in kgdb_parse_options()
[all …]
/linux-2.4.37.9/arch/mips/mips-boards/sead/
Dsead_setup.c56 static char options[8]; in sead_setup() local
58 options[i] = s[i]; in sead_setup()
61 options[i] = 0; in sead_setup()
63 c->options = s ? options : NULL; in sead_setup()
66 c->name, c->index, options); in sead_setup()
73 cpu_data[0].options &= ~MIPS_CPU_FPU; in sead_setup()
/linux-2.4.37.9/arch/mips/mips-boards/atlas/
Datlas_setup.c77 static char options[8]; in atlas_setup() local
79 options[i] = s[i]; in atlas_setup()
82 options[i] = 0; in atlas_setup()
84 c->options = s ? options : NULL; in atlas_setup()
87 c->name, c->index, options); in atlas_setup()
123 cpu_data[0].options &= ~MIPS_CPU_FPU; in atlas_setup()
/linux-2.4.37.9/drivers/video/
Dfbmem.c909 int __init video_setup(char *options) in video_setup() argument
913 if (!options || !*options) in video_setup()
916 if (!strncmp(options, "scrollback:", 11)) { in video_setup()
917 options += 11; in video_setup()
918 if (*options) { in video_setup()
919 fbcon_softback_size = simple_strtoul(options, &options, 0); in video_setup()
920 if (*options == 'k' || *options == 'K') { in video_setup()
922 options++; in video_setup()
924 if (*options != ',') in video_setup()
926 options++; in video_setup()
[all …]
/linux-2.4.37.9/Documentation/filesystems/
D00-INDEX6 - info and mount options for the Acorn Advanced Disc Filing System.
8 - info and mount options for the Amiga Fast File System.
20 - info, mount options and specifications for the Ext2 filesystem.
24 - info and mount options for the OS/2 HPFS.
26 - info and mount options for the ISO 9660 (CDROM) filesystem.
28 - info and mount options for the JFS filesystem.
32 - info and mount options for the NTFS filesystem (Windows NT).
42 - info and mount options for the UDF filesystem.
52 - info and mount options for the XFS filesystem.
/linux-2.4.37.9/Documentation/sound/
DMAD1626 options sb mad16=1
27 options mad16 io=0x530 irq=7 dma=0 dma16=1 && /usr/local/bin/aumix -w 15 -p 20 -m 0 -1 0 -2 0 -3 0…
32 options adlib_card io=0x388 # FM synthesizer
33 options sb mad16=1
34 options mad16 io=0x530 irq=7 dma=0 dma16=1 mpu_io=816 mpu_irq=5 && /usr/local/bin/aumix -w 15 -p 20…
36 The addition of the "mpu_io=816 mpu_irq=5" to the mad16 options line is
39 The mad16 module in addition supports the following options:
DTropez+12 options wavefront io=0x200 irq=9
13 options cs4232 synthirq=9 synthio=0x200 io=0x530 irq=5 dma=1 dma2=0
14 options opl3 io=0x388
18 the wavefront options "io" and "irq" ***MUST*** match the "synthio"
19 and "synthirq" cs4232 options.
/linux-2.4.37.9/Documentation/video4linux/bttv/
DModules.conf3 options i2c-core i2c_debug=1
4 options i2c-algo-bit bit_test=1
9 options bttv card=2 radio=1
10 options tuner debug=1
/linux-2.4.37.9/Documentation/filesystems/devfs/
Dboot-options10 When CONFIG_DEVFS_DEBUG is enabled, you can pass several boot options
11 to the kernel to debug devfs. The boot options are prefixed by
29 Note that all debugging options have 'd' as the first character. By
30 default all options are off. All debugging output is sent to the
31 kernel logs. The debugging options do not take effect until the devfs
35 These are the options:
61 These control the default behaviour of devfs. The options are:
/linux-2.4.37.9/drivers/scsi/sym53c8xx_2/
Dsym_misc.c162 if (__tprev.options == __tcurr.options && in sym_announce_transfer_rate()
168 __tprev.options = __tcurr.options; in sym_announce_transfer_rate()
209 (__tcurr.options & PPR_OPT_DT) ? "DT" : "ST", in sym_announce_transfer_rate()
233 tp->tinfo.goal.options = 0; in sym_update_trans_settings()
244 tp->tinfo.goal.options = 0; in sym_update_trans_settings()
249 tp->tinfo.goal.options = 0; in sym_update_trans_settings()
252 if (tp->tinfo.goal.options & PPR_OPT_DT) { in sym_update_trans_settings()
/linux-2.4.37.9/fs/fat/
Dinode.c193 MSDOS_SB(sb)->options.codepage = 0; in fat_put_super()
203 if (MSDOS_SB(sb)->options.iocharset) { in fat_put_super()
204 kfree(MSDOS_SB(sb)->options.iocharset); in fat_put_super()
205 MSDOS_SB(sb)->options.iocharset = NULL; in fat_put_super()
210 static int parse_options(char *options,int *fat, int *debug, in parse_options() argument
231 if (!options) in parse_options()
235 for (this_char = strtok(options,","); this_char; in parse_options()
366 if (this_char != options) *(this_char-1) = ','; in parse_options()
384 inode->i_uid = sbi->options.fs_uid; in fat_read_root()
385 inode->i_gid = sbi->options.fs_gid; in fat_read_root()
[all …]
/linux-2.4.37.9/scripts/
Dcheckhelp.pl8 @options=split /\n/, `grep '^CONFIG' Documentation/Configure.help`;
9 die "Can't read Documentation/Configure.help\n" if $#options == -1;
21 @found = grep (/$what$/, @options);
/linux-2.4.37.9/drivers/scsi/
Dbvme6000.c31 long long options; in bvme6000_scsi_detect() local
40options = OPTION_MEMORY_MAPPED|OPTION_DEBUG_TEST1|OPTION_INTFLY|OPTION_SYNCHRONOUS|OPTION_ALWAYS_S… in bvme6000_scsi_detect()
46 options, clock); in bvme6000_scsi_detect()
Dmvme16x.c29 long long options; in mvme16x_scsi_detect() local
42options = OPTION_MEMORY_MAPPED|OPTION_DEBUG_TEST1|OPTION_INTFLY|OPTION_SYNCHRONOUS|OPTION_ALWAYS_S… in mvme16x_scsi_detect()
48 options, clock); in mvme16x_scsi_detect()
D53c7xx.c751 hostdata->options |= OPTION_DISCONNECT; in request_disconnect()
753 hostdata->options &= ~OPTION_DISCONNECT; in request_disconnect()
796 if (hostdata->options & OPTION_ALWAYS_SYNCHRONOUS) in NCR53c7x0_driver_init()
873 hostdata->options |= OPTION_NO_ASYNC; in NCR53c7x0_init()
874 hostdata->options &= ~(OPTION_SYNCHRONOUS | OPTION_ALWAYS_SYNCHRONOUS); in NCR53c7x0_init()
879 hostdata->options &= ~(OPTION_SYNCHRONOUS | OPTION_ALWAYS_SYNCHRONOUS); in NCR53c7x0_init()
883 hostdata->options &= ~OPTION_DISCONNECT; in NCR53c7x0_init()
898 hostdata->options = (long long)val << 32; in NCR53c7x0_init()
900 hostdata->options |= val; in NCR53c7x0_init()
929 (hostdata->options & (OPTION_MEMORY_MAPPED)) != in NCR53c7x0_init()
[all …]
/linux-2.4.37.9/include/linux/
Dppp-comp.h67 void *(*comp_alloc) (unsigned char *options, int opt_len);
73 int (*comp_init) (void *state, unsigned char *options,
87 void *(*decomp_alloc) (unsigned char *options, int opt_len);
93 int (*decomp_init) (void *state, unsigned char *options,
/linux-2.4.37.9/drivers/char/
Dadvantechwdt.c146 options: WDIOF_KEEPALIVEPING | WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE, in advwdt_ioctl()
179 int options, retval = -EINVAL; in advwdt_ioctl() local
181 if (get_user(options, (int *)arg)) in advwdt_ioctl()
184 if (options & WDIOS_DISABLECARD) { in advwdt_ioctl()
189 if (options & WDIOS_ENABLECARD) { in advwdt_ioctl()
/linux-2.4.37.9/drivers/s390/net/
Dqeth.c528 if (qeth_get_card_by_name(dev_name)->options.ena_ipat!= in qeth_add_ipato_entry()
619 if (card->options.ena_ipat!=ENABLE_TAKEOVER) { in qeth_is_ipa_covered_by_ipato_entries()
787 (card->options.async_iqd==ASYNC_IQD) ) { in qeth_get_prioqueue()
798 if (card->options.do_prio_queueing) { in qeth_get_prioqueue()
800 if (card->options.do_prio_queueing== in qeth_get_prioqueue()
820 if (card->options.do_prio_queueing== in qeth_get_prioqueue()
830 return card->options.default_queue; in qeth_get_prioqueue()
831 } else return card->options.default_queue; in qeth_get_prioqueue()
1129 int max_buffers=card->options.inbound_buffer_count; in qeth_get_empty_buffer_pool_entry()
1435 if (card->options.fake_ll==FAKE_LL) { in qeth_get_next_skb()
[all …]
/linux-2.4.37.9/fs/msdos/
Dnamei.c138 dotsOK = MSDOS_SB(dir->i_sb)->options.dotsOK; in msdos_find()
139 res = msdos_format_name(name,len, msdos_name,&MSDOS_SB(dir->i_sb)->options); in msdos_find()
163 struct fat_mount_options *options = & (MSDOS_SB(dentry->d_sb)->options); in msdos_hash() local
167 error = msdos_format_name(qstr->name, qstr->len, msdos_name, options); in msdos_hash()
179 struct fat_mount_options *options = & (MSDOS_SB(dentry->d_sb)->options); in msdos_cmp() local
183 error = msdos_format_name(a->name, a->len, a_msdos_name, options); in msdos_cmp()
186 error = msdos_format_name(b->name, b->len, b_msdos_name, options); in msdos_cmp()
287 msdos_name, &MSDOS_SB(sb)->options); in msdos_create()
360 msdos_name, &MSDOS_SB(sb)->options); in msdos_mkdir()
555 &MSDOS_SB(old_dir->i_sb)->options); in msdos_rename()
[all …]

12345678910>>...28