Displaying 6 results from an estimated 6 matches for "consdev".
2017 Oct 12
2
[PATCH v1 15/27] compiler: Option to default to hidden symbols
On Wed, Oct 11, 2017 at 01:30:15PM -0700, Thomas Garnier wrote:
> Provide an option to default visibility to hidden except for key
> symbols. This option is disabled by default and will be used by x86_64
> PIE support to remove errors between compilation units.
>
> The default visibility is also enabled for external symbols that are
> compared as they maybe equals (start/end of
2017 Oct 12
2
[PATCH v1 15/27] compiler: Option to default to hidden symbols
On Wed, Oct 11, 2017 at 01:30:15PM -0700, Thomas Garnier wrote:
> Provide an option to default visibility to hidden except for key
> symbols. This option is disabled by default and will be used by x86_64
> PIE support to remove errors between compilation units.
>
> The default visibility is also enabled for external symbols that are
> compared as they maybe equals (start/end of
2017 Oct 18
0
[PATCH v1 15/27] compiler: Option to default to hidden symbols
...ty push(hidden)
>> +#define __default_visibility __attribute__((visibility ("default")))
>
> Does this still work with CONFIG_LD_DEAD_CODE_DATA_ELIMINATION ?
I cannot make it work with or without this change. How is it supposed
to be used?
For me with, it crashes with a bad consdev at:
http://elixir.free-electrons.com/linux/latest/source/drivers/tty/tty_io.c#L3194
>
>> +#else
>> +#define __default_visibility
>> +#endif
>> +
>> /*
>> * Generic compiler-dependent macros required for kernel
>> * build go below this comment. Actu...
2004 Nov 23
2
Users being deleted from Domain Users group on Samba BDC during vampire process of migration
...830-78$
Creating account: COL190GPCTAB-62$
Creating account: PERIA30-63$
Creating account: ROM010IA30-71$
Creating account: DEK480IA30-73$
Group members of Domain Admins:
charliebrown,faxserver,joeblow(primary),vbe(primary),snoopy(primary),epo,xerox,
Group members of Domain Users: PRIMARY$(primary),CONSDEV
$(primary),marshah(primary),marshab(primary),johnp(primary) . . . <snip>
rajg(primary),FIEGATEWAY450-5$(primary),MAC120I2652-8
$(primary),FISGE2000D-2$(primary),DISGE2000D-1$(primary),ADA440GPCTAB-6
$(primary),CJRG450ROG-29$(primary),DAL230GPCTAB-21
$(primary),THO070GPCTAB-65$(primary),CAN300...
2004 Nov 23
1
Fw: Users being deleted from Domain Users group on Samba BDC during vampire process of migration
...30-78$
Creating account: COL190GPCTAB-62$
Creating account: PERIA30-63$
Creating account: ROM010IA30-71$
Creating account: DEK480IA30-73$
Group members of Domain Admins:
charliebrown,faxserver,joeblow(primary),vbe(primary),snoopy(primary),epo,xerox,
Group members of Domain Users: PRIMARY$(primary),CONSDEV
$(primary),marshah(primary),marshab(primary),johnp(primary) . . . <snip>
rajg(primary),FIEGATEWAY450-5$(primary),MAC120I2652-8
$(primary),FISGE2000D-2$(primary),DISGE2000D-1$(primary),ADA440GPCTAB-6
$(primary),CJRG450ROG-29$(primary),DAL230GPCTAB-21
$(primary),THO070GPCTAB-65$(primary),CAN300...
2013 Oct 28
5
FreeBSD PVH guest support
..., wp; /* write_cons, write_prod */
xen_intr_handle_t xen_intr_handle;
device_t xencons_dev;
+/* Virt address of the shared console page */
+char *console_page;
+
#ifdef KDB
static int xc_altbrk;
#endif
@@ -113,6 +116,9 @@ static struct ttydevsw xc_ttydevsw = {
static void
xc_cnprobe(struct consdev *cp)
{
+ if (!xen_pv_domain())
+ return;
+
cp->cn_pri = CN_REMOTE;
sprintf(cp->cn_name, "%s0", driver_name);
}
@@ -175,7 +181,7 @@ static void
xc_cnputc(struct consdev *dev, int c)
{
- if (xen_start_info->flags & SIF_INITDOMAIN)
+ if (HYPERVISOR_start_info->flag...