Searched refs:cfg (Results 276 - 300 of 1524) sorted by relevance

<<11121314151617181920>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/examples/logon/mklogon/
H A Dmklogon.pl84 my $cfg = new Config::Simple($configfile) or die "Could not find $configfile";
88 my $sambaconf = $cfg->param("global.sambaconf") or die "Couldn't find your samba config! \n";
92 my $logging = lc( $cfg->param("global.logging") );
93 my $mkprofile = lc( $cfg->param("global.mkprofile") );
94 my $logdir = $cfg->param("global.logdir");
95 my $logfile = $cfg->param("global.logfile");
97 my $logtype = $cfg->param("global.logtype");
100 my @ostype = $cfg->param($osmap);
101 my @username = $cfg->param($usermap);
102 my $compname = $cfg
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/netfilter/
H A Dxt_hashlimit.c100 struct hashlimit_cfg1 cfg; /* config */ member in struct:xt_hashlimit_htable
131 * Instead of returning hash % ht->cfg.size (implying a divide)
132 * we return the high 32 bits of the (hash * ht->cfg.size) that will
133 * give results between [0 and cfg.size-1] and same hash distribution,
136 return ((u64)hash * ht->cfg.size) >> 32;
172 if (ht->cfg.max && ht->count >= ht->cfg.max) {
174 pr_err("max count of %u reached\n", ht->cfg.max);
217 if (minfo->cfg.size) {
218 size = minfo->cfg
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/netfilter/
H A Dxt_hashlimit.c100 struct hashlimit_cfg1 cfg; /* config */ member in struct:xt_hashlimit_htable
131 * Instead of returning hash % ht->cfg.size (implying a divide)
132 * we return the high 32 bits of the (hash * ht->cfg.size) that will
133 * give results between [0 and cfg.size-1] and same hash distribution,
136 return ((u64)hash * ht->cfg.size) >> 32;
172 if (ht->cfg.max && ht->count >= ht->cfg.max) {
174 pr_err("max count of %u reached\n", ht->cfg.max);
217 if (minfo->cfg.size) {
218 size = minfo->cfg
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/test/scr037/
H A DDatabaseEnvironmentTest.cs167 DatabaseEnvironmentConfig cfg =
169 cfg.Create = true;
170 cfg.UseCDB = true;
171 cfg.UseMPool = true;
172 DatabaseEnvironment env = DatabaseEnvironment.Open(testHome, cfg);
197 DatabaseEnvironmentConfig cfg =
199 cfg.Create = true;
200 cfg.UseTxns = true;
201 cfg.UseMPool = true;
202 cfg
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/test/scr037/
H A DDatabaseEnvironmentTest.cs167 DatabaseEnvironmentConfig cfg =
169 cfg.Create = true;
170 cfg.UseCDB = true;
171 cfg.UseMPool = true;
172 DatabaseEnvironment env = DatabaseEnvironment.Open(testHome, cfg);
197 DatabaseEnvironmentConfig cfg =
199 cfg.Create = true;
200 cfg.UseTxns = true;
201 cfg.UseMPool = true;
202 cfg
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/test/scr037/
H A DDatabaseEnvironmentTest.cs167 DatabaseEnvironmentConfig cfg =
169 cfg.Create = true;
170 cfg.UseCDB = true;
171 cfg.UseMPool = true;
172 DatabaseEnvironment env = DatabaseEnvironment.Open(testHome, cfg);
197 DatabaseEnvironmentConfig cfg =
199 cfg.Create = true;
200 cfg.UseTxns = true;
201 cfg.UseMPool = true;
202 cfg
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/video/backlight/
H A Dvgg2432a4.c112 struct ili9320_platdata *cfg)
134 ili9320_write(lcd, ILI9320_DISPLAY2, cfg->display2);
135 ili9320_write(lcd, ILI9320_DISPLAY3, cfg->display3);
136 ili9320_write(lcd, ILI9320_DISPLAY4, cfg->display4);
138 ili9320_write(lcd, ILI9320_RGB_IF1, cfg->rgb_if1);
140 ili9320_write(lcd, ILI9320_RGB_IF2, cfg->rgb_if2);
171 ili9320_write(lcd, ILI9320_HORIZ_END, cfg->hsize - 1);
173 ili9320_write(lcd, ILI9320_VERT_END, cfg->vsize - 1);
176 ILI9320_DRIVER2_NL(((cfg->vsize - 240) / 8) + 0x1D));
187 ili9320_write(lcd, ILI9320_INTERFACE2, cfg
111 vgg2432a4_lcd_init(struct ili9320 *lcd, struct ili9320_platdata *cfg) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/ipv4/
H A Dfib_semantics.c391 int remaining, struct fib_config *cfg)
400 (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags;
424 int fib_nh_match(struct fib_config *cfg, struct fib_info *fi) argument
431 if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority)
434 if (cfg->fc_oif || cfg->fc_gw) {
435 if ((!cfg->fc_oif || cfg->fc_oif == fi->fib_nh->nh_oif) &&
436 (!cfg
390 fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, int remaining, struct fib_config *cfg) argument
522 fib_check_nh(struct fib_config *cfg, struct fib_info *fi, struct fib_nh *nh) argument
684 fib_create_info(struct fib_config *cfg) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/video/backlight/
H A Dvgg2432a4.c112 struct ili9320_platdata *cfg)
134 ili9320_write(lcd, ILI9320_DISPLAY2, cfg->display2);
135 ili9320_write(lcd, ILI9320_DISPLAY3, cfg->display3);
136 ili9320_write(lcd, ILI9320_DISPLAY4, cfg->display4);
138 ili9320_write(lcd, ILI9320_RGB_IF1, cfg->rgb_if1);
140 ili9320_write(lcd, ILI9320_RGB_IF2, cfg->rgb_if2);
171 ili9320_write(lcd, ILI9320_HORIZ_END, cfg->hsize - 1);
173 ili9320_write(lcd, ILI9320_VERT_END, cfg->vsize - 1);
176 ILI9320_DRIVER2_NL(((cfg->vsize - 240) / 8) + 0x1D));
187 ili9320_write(lcd, ILI9320_INTERFACE2, cfg
111 vgg2432a4_lcd_init(struct ili9320 *lcd, struct ili9320_platdata *cfg) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/ipv4/
H A Dfib_semantics.c391 int remaining, struct fib_config *cfg)
400 (cfg->fc_flags & ~0xFF) | rtnh->rtnh_flags;
424 int fib_nh_match(struct fib_config *cfg, struct fib_info *fi) argument
431 if (cfg->fc_priority && cfg->fc_priority != fi->fib_priority)
434 if (cfg->fc_oif || cfg->fc_gw) {
435 if ((!cfg->fc_oif || cfg->fc_oif == fi->fib_nh->nh_oif) &&
436 (!cfg
390 fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, int remaining, struct fib_config *cfg) argument
522 fib_check_nh(struct fib_config *cfg, struct fib_info *fi, struct fib_nh *nh) argument
684 fib_create_info(struct fib_config *cfg) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/media/dvb/frontends/
H A Ddib0070.c56 const struct dib0070_config *cfg; member in struct:dib0070_state
82 { .addr = state->cfg->i2c_address, .flags = 0, .buf = &reg, .len = 1 },
83 { .addr = state->cfg->i2c_address, .flags = I2C_M_RD, .buf = b, .len = 2 },
95 struct i2c_msg msg = { .addr = state->cfg->i2c_address, .flags = 0, .buf = b, .len = 3 };
104 state->cfg->sleep(state->fe, 0); \
105 if (state->cfg->reset) { \
106 state->cfg->reset(state->fe,1); msleep(10); \
107 state->cfg->reset(state->fe,0); msleep(10); \
218 if (state->cfg->vga_filter != 0) {
219 dib0070_write_reg(state, 0x1a, state->cfg
708 dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/media/dvb/frontends/
H A Ddib0070.c56 const struct dib0070_config *cfg; member in struct:dib0070_state
82 { .addr = state->cfg->i2c_address, .flags = 0, .buf = &reg, .len = 1 },
83 { .addr = state->cfg->i2c_address, .flags = I2C_M_RD, .buf = b, .len = 2 },
95 struct i2c_msg msg = { .addr = state->cfg->i2c_address, .flags = 0, .buf = b, .len = 3 };
104 state->cfg->sleep(state->fe, 0); \
105 if (state->cfg->reset) { \
106 state->cfg->reset(state->fe,1); msleep(10); \
107 state->cfg->reset(state->fe,0); msleep(10); \
218 if (state->cfg->vga_filter != 0) {
219 dib0070_write_reg(state, 0x1a, state->cfg
708 dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/serial/
H A Ds3c2412.c79 struct s3c2410_uartcfg *cfg)
83 dbg("%s: port=%p (%08lx), cfg=%p\n",
84 __func__, port, port->mapbase, cfg);
90 wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
91 wr_regl(port, S3C2410_ULCON, cfg->ulcon);
95 wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
96 wr_regl(port, S3C2410_UFCON, cfg->ufcon);
78 s3c2412_serial_resetport(struct uart_port *port, struct s3c2410_uartcfg *cfg) argument
H A Ds3c6400.c79 struct s3c2410_uartcfg *cfg)
83 dbg("s3c6400_serial_resetport: port=%p (%08lx), cfg=%p\n",
84 port, port->mapbase, cfg);
90 wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
91 wr_regl(port, S3C2410_ULCON, cfg->ulcon);
95 wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
96 wr_regl(port, S3C2410_UFCON, cfg->ufcon);
78 s3c6400_serial_resetport(struct uart_port *port, struct s3c2410_uartcfg *cfg) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/serial/
H A Ds3c2412.c79 struct s3c2410_uartcfg *cfg)
83 dbg("%s: port=%p (%08lx), cfg=%p\n",
84 __func__, port, port->mapbase, cfg);
90 wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
91 wr_regl(port, S3C2410_ULCON, cfg->ulcon);
95 wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
96 wr_regl(port, S3C2410_UFCON, cfg->ufcon);
78 s3c2412_serial_resetport(struct uart_port *port, struct s3c2410_uartcfg *cfg) argument
H A Ds3c6400.c79 struct s3c2410_uartcfg *cfg)
83 dbg("s3c6400_serial_resetport: port=%p (%08lx), cfg=%p\n",
84 port, port->mapbase, cfg);
90 wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
91 wr_regl(port, S3C2410_ULCON, cfg->ulcon);
95 wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
96 wr_regl(port, S3C2410_UFCON, cfg->ufcon);
78 s3c6400_serial_resetport(struct uart_port *port, struct s3c2410_uartcfg *cfg) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/test/scr016/src/com/sleepycat/db/test/
H A DLogCursorTest.java60 DatabaseConfig cfg;
74 cfg = new DatabaseConfig();
75 cfg.setAllowCreate(true);
76 cfg.setType(DatabaseType.BTREE);
77 cfg.setTransactional(true);
78 db = env.openDatabase(null, LOGCURSORTEST_DBNAME, null, cfg);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/test/scr016/src/com/sleepycat/db/test/
H A DLogCursorTest.java60 DatabaseConfig cfg;
74 cfg = new DatabaseConfig();
75 cfg.setAllowCreate(true);
76 cfg.setType(DatabaseType.BTREE);
77 cfg.setTransactional(true);
78 db = env.openDatabase(null, LOGCURSORTEST_DBNAME, null, cfg);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/test/scr016/src/com/sleepycat/db/test/
H A DLogCursorTest.java60 DatabaseConfig cfg;
74 cfg = new DatabaseConfig();
75 cfg.setAllowCreate(true);
76 cfg.setType(DatabaseType.BTREE);
77 cfg.setTransactional(true);
78 db = env.openDatabase(null, LOGCURSORTEST_DBNAME, null, cfg);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/ia64/kernel/
H A Dirq_ia64.c137 struct irq_cfg *cfg = &irq_cfg[irq]; local
145 if ((cfg->vector == vector) && cpus_equal(cfg->domain, domain))
147 if (cfg->vector != IRQ_VECTOR_UNASSIGNED)
151 cfg->vector = vector;
152 cfg->domain = domain;
174 struct irq_cfg *cfg = &irq_cfg[irq]; local
177 BUG_ON(cfg->vector == IRQ_VECTOR_UNASSIGNED);
178 vector = cfg->vector;
179 domain = cfg
278 struct irq_cfg *cfg = &irq_cfg[irq]; local
313 struct irq_cfg *cfg = &irq_cfg[irq]; local
340 struct irq_cfg *cfg; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/cris/include/arch-v32/arch/hwregs/iop/
H A Diop_sw_cfg_defs.h89 unsigned int cfg : 2; member in struct:__anon12264
97 unsigned int cfg : 2; member in struct:__anon12265
105 unsigned int cfg : 2; member in struct:__anon12266
113 unsigned int cfg : 2; member in struct:__anon12267
121 unsigned int cfg : 2; member in struct:__anon12268
129 unsigned int cfg : 2; member in struct:__anon12269
137 unsigned int cfg : 2; member in struct:__anon12270
145 unsigned int cfg : 2; member in struct:__anon12271
153 unsigned int cfg : 2; member in struct:__anon12272
161 unsigned int cfg member in struct:__anon12273
169 unsigned int cfg : 2; member in struct:__anon12274
177 unsigned int cfg : 2; member in struct:__anon12275
185 unsigned int cfg : 2; member in struct:__anon12276
193 unsigned int cfg : 2; member in struct:__anon12277
201 unsigned int cfg : 2; member in struct:__anon12278
209 unsigned int cfg : 2; member in struct:__anon12279
217 unsigned int cfg : 2; member in struct:__anon12280
225 unsigned int cfg : 2; member in struct:__anon12281
233 unsigned int cfg : 2; member in struct:__anon12282
241 unsigned int cfg : 2; member in struct:__anon12283
249 unsigned int cfg : 2; member in struct:__anon12284
257 unsigned int cfg : 2; member in struct:__anon12285
265 unsigned int cfg : 2; member in struct:__anon12286
273 unsigned int cfg : 2; member in struct:__anon12287
281 unsigned int cfg : 2; member in struct:__anon12288
289 unsigned int cfg : 2; member in struct:__anon12289
297 unsigned int cfg : 2; member in struct:__anon12290
305 unsigned int cfg : 2; member in struct:__anon12291
313 unsigned int cfg : 2; member in struct:__anon12292
321 unsigned int cfg : 2; member in struct:__anon12293
329 unsigned int cfg : 2; member in struct:__anon12294
337 unsigned int cfg : 2; member in struct:__anon12295
345 unsigned int cfg : 2; member in struct:__anon12296
353 unsigned int cfg : 2; member in struct:__anon12297
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/cris/include/arch-v32/arch/hwregs/iop/
H A Diop_sw_cfg_defs.h89 unsigned int cfg : 2; member in struct:__anon23957
97 unsigned int cfg : 2; member in struct:__anon23958
105 unsigned int cfg : 2; member in struct:__anon23959
113 unsigned int cfg : 2; member in struct:__anon23960
121 unsigned int cfg : 2; member in struct:__anon23961
129 unsigned int cfg : 2; member in struct:__anon23962
137 unsigned int cfg : 2; member in struct:__anon23963
145 unsigned int cfg : 2; member in struct:__anon23964
153 unsigned int cfg : 2; member in struct:__anon23965
161 unsigned int cfg member in struct:__anon23966
169 unsigned int cfg : 2; member in struct:__anon23967
177 unsigned int cfg : 2; member in struct:__anon23968
185 unsigned int cfg : 2; member in struct:__anon23969
193 unsigned int cfg : 2; member in struct:__anon23970
201 unsigned int cfg : 2; member in struct:__anon23971
209 unsigned int cfg : 2; member in struct:__anon23972
217 unsigned int cfg : 2; member in struct:__anon23973
225 unsigned int cfg : 2; member in struct:__anon23974
233 unsigned int cfg : 2; member in struct:__anon23975
241 unsigned int cfg : 2; member in struct:__anon23976
249 unsigned int cfg : 2; member in struct:__anon23977
257 unsigned int cfg : 2; member in struct:__anon23978
265 unsigned int cfg : 2; member in struct:__anon23979
273 unsigned int cfg : 2; member in struct:__anon23980
281 unsigned int cfg : 2; member in struct:__anon23981
289 unsigned int cfg : 2; member in struct:__anon23982
297 unsigned int cfg : 2; member in struct:__anon23983
305 unsigned int cfg : 2; member in struct:__anon23984
313 unsigned int cfg : 2; member in struct:__anon23985
321 unsigned int cfg : 2; member in struct:__anon23986
329 unsigned int cfg : 2; member in struct:__anon23987
337 unsigned int cfg : 2; member in struct:__anon23988
345 unsigned int cfg : 2; member in struct:__anon23989
353 unsigned int cfg : 2; member in struct:__anon23990
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/ia64/kernel/
H A Dirq_ia64.c137 struct irq_cfg *cfg = &irq_cfg[irq]; local
145 if ((cfg->vector == vector) && cpus_equal(cfg->domain, domain))
147 if (cfg->vector != IRQ_VECTOR_UNASSIGNED)
151 cfg->vector = vector;
152 cfg->domain = domain;
174 struct irq_cfg *cfg = &irq_cfg[irq]; local
177 BUG_ON(cfg->vector == IRQ_VECTOR_UNASSIGNED);
178 vector = cfg->vector;
179 domain = cfg
278 struct irq_cfg *cfg = &irq_cfg[irq]; local
313 struct irq_cfg *cfg = &irq_cfg[irq]; local
340 struct irq_cfg *cfg; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/x86/kernel/apic/
H A Dio_apic.c152 struct irq_cfg *cfg; local
163 cfg = irq_cfgx;
169 desc->chip_data = &cfg[i];
170 zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
171 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
177 cfg[i].vector = IRQ0_VECTOR + i;
178 cpumask_set_cpu(0, cfg[i].domain);
188 struct irq_cfg *cfg = NULL; local
193 cfg = desc->chip_data;
195 return cfg;
200 struct irq_cfg *cfg; local
220 struct irq_cfg *cfg; local
236 init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node) argument
277 free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg) argument
297 struct irq_cfg *cfg; local
317 free_irq_cfg(struct irq_cfg *cfg) argument
326 struct irq_cfg *old_cfg, *cfg; local
399 io_apic_level_ack_pending(struct irq_cfg *cfg) argument
484 add_pin_to_irq_node_nopanic(struct irq_cfg *cfg, int node, int apic, int pin) argument
509 add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin) argument
518 replace_pin_at_irq_node(struct irq_cfg *cfg, int node, int oldapic, int oldpin, int newapic, int newpin) argument
552 io_apic_modify_irq(struct irq_cfg *cfg, int mask_and, int mask_or, void (*final)(struct irq_pin_list *entry)) argument
574 __unmask_IO_APIC_irq(struct irq_cfg *cfg) argument
590 __mask_IO_APIC_irq(struct irq_cfg *cfg) argument
597 struct irq_cfg *cfg = desc->chip_data; local
609 struct irq_cfg *cfg = desc->chip_data; local
1140 __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) argument
1219 assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) argument
1230 __clear_irq_vector(int irq, struct irq_cfg *cfg) argument
1261 struct irq_cfg *cfg; local
1438 struct irq_cfg *cfg; local
1491 struct irq_cfg *cfg; local
1559 struct irq_cfg *cfg; local
1645 struct irq_cfg *cfg; local
2239 struct irq_cfg *cfg; local
2257 struct irq_cfg *cfg = irq_cfg(irq); local
2277 send_cleanup_vector(struct irq_cfg *cfg) argument
2293 __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg) argument
2326 struct irq_cfg *cfg; local
2346 struct irq_cfg *cfg; local
2393 struct irq_cfg *cfg; local
2464 struct irq_cfg *cfg; local
2510 struct irq_cfg *cfg = desc->chip_data; local
2530 struct irq_cfg *cfg = desc->chip_data; local
2568 __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg) argument
2593 struct irq_cfg *cfg; local
2610 struct irq_cfg *cfg; local
2727 struct irq_cfg *cfg; local
2887 struct irq_cfg *cfg = desc->chip_data; local
3274 struct irq_cfg *cfg; local
3352 struct irq_cfg *cfg; local
3381 struct irq_cfg *cfg = desc->chip_data; local
3566 struct irq_cfg *cfg; local
3622 struct irq_cfg *cfg; local
3729 struct irq_cfg *cfg; local
3757 struct irq_cfg *cfg; local
3851 struct irq_cfg *cfg; local
4273 struct irq_cfg *cfg; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/kernel/apic/
H A Dio_apic.c152 struct irq_cfg *cfg; local
163 cfg = irq_cfgx;
169 desc->chip_data = &cfg[i];
170 zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
171 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
177 cfg[i].vector = IRQ0_VECTOR + i;
178 cpumask_set_cpu(0, cfg[i].domain);
188 struct irq_cfg *cfg = NULL; local
193 cfg = desc->chip_data;
195 return cfg;
200 struct irq_cfg *cfg; local
220 struct irq_cfg *cfg; local
236 init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node) argument
277 free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg) argument
297 struct irq_cfg *cfg; local
317 free_irq_cfg(struct irq_cfg *cfg) argument
326 struct irq_cfg *old_cfg, *cfg; local
399 io_apic_level_ack_pending(struct irq_cfg *cfg) argument
484 add_pin_to_irq_node_nopanic(struct irq_cfg *cfg, int node, int apic, int pin) argument
509 add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin) argument
518 replace_pin_at_irq_node(struct irq_cfg *cfg, int node, int oldapic, int oldpin, int newapic, int newpin) argument
552 io_apic_modify_irq(struct irq_cfg *cfg, int mask_and, int mask_or, void (*final)(struct irq_pin_list *entry)) argument
574 __unmask_IO_APIC_irq(struct irq_cfg *cfg) argument
590 __mask_IO_APIC_irq(struct irq_cfg *cfg) argument
597 struct irq_cfg *cfg = desc->chip_data; local
609 struct irq_cfg *cfg = desc->chip_data; local
1140 __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) argument
1219 assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) argument
1230 __clear_irq_vector(int irq, struct irq_cfg *cfg) argument
1261 struct irq_cfg *cfg; local
1438 struct irq_cfg *cfg; local
1491 struct irq_cfg *cfg; local
1559 struct irq_cfg *cfg; local
1645 struct irq_cfg *cfg; local
2239 struct irq_cfg *cfg; local
2257 struct irq_cfg *cfg = irq_cfg(irq); local
2277 send_cleanup_vector(struct irq_cfg *cfg) argument
2293 __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg) argument
2326 struct irq_cfg *cfg; local
2346 struct irq_cfg *cfg; local
2393 struct irq_cfg *cfg; local
2464 struct irq_cfg *cfg; local
2510 struct irq_cfg *cfg = desc->chip_data; local
2530 struct irq_cfg *cfg = desc->chip_data; local
2568 __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg) argument
2593 struct irq_cfg *cfg; local
2610 struct irq_cfg *cfg; local
2727 struct irq_cfg *cfg; local
2887 struct irq_cfg *cfg = desc->chip_data; local
3274 struct irq_cfg *cfg; local
3352 struct irq_cfg *cfg; local
3381 struct irq_cfg *cfg = desc->chip_data; local
3566 struct irq_cfg *cfg; local
3622 struct irq_cfg *cfg; local
3729 struct irq_cfg *cfg; local
3757 struct irq_cfg *cfg; local
3851 struct irq_cfg *cfg; local
4273 struct irq_cfg *cfg; local
[all...]

Completed in 327 milliseconds

<<11121314151617181920>>