Displaying 17 results from an estimated 17 matches for "_device".
Did you mean:
device
2016 Nov 02
0
[PATCH v3 01/15] core: constify nv*_printk macros
...26b86e2712 100644
--- a/drm/nouveau/include/nvkm/core/device.h
+++ b/drm/nouveau/include/nvkm/core/device.h
@@ -262,7 +262,7 @@ extern const struct nvkm_sclass nvkm_udevice_sclass;
/* device logging */
#define nvdev_printk_(d,l,p,f,a...) do { \
- struct nvkm_device *_device = (d); \
+ const struct nvkm_device *_device = (d); \
if (_device->debug >= (l)) \
dev_##p(_device->dev, f, ##a); \
} while(0)
diff -...
2016 Dec 13
0
[PATCH v2 1/15] core: constify nv*_printk macros
...26b86e2712 100644
--- a/drm/nouveau/include/nvkm/core/device.h
+++ b/drm/nouveau/include/nvkm/core/device.h
@@ -262,7 +262,7 @@ extern const struct nvkm_sclass nvkm_udevice_sclass;
/* device logging */
#define nvdev_printk_(d,l,p,f,a...) do { \
- struct nvkm_device *_device = (d); \
+ const struct nvkm_device *_device = (d); \
if (_device->debug >= (l)) \
dev_##p(_device->dev, f, ##a); \
} while(0)
diff -...
2019 Dec 25
1
Duplicate entry in macOS "Network" when using Samba 4.9.1 and avahi 0.7
...-nxml-*-->
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
<name replace-wildcards="yes">BackupAVAHI</name>
<service>
<type>_smb._tcp</type>
<port>445</port>
</service>
<service>
<type>_device-info._tcp</type>
<port>0</port>
<txt-record>model=Xserve</txt-record>
</service>
</service-group>
#####################################
cat /etc/samba/smb.conf
[global]
netbios name = Backup-Server
server string = Backup-Server
workgroup = local...
2019 Jan 15
1
issue with fruit:model not using avahi correctly?
hey folks,
I am trying to change the fruit:model value for changing the icon in the mac os finder.
After digging a little bit in the source code I saw that "source3/smbd/avahi_register.c" does not contain a line where info like
<service>
<type>_device-info._tcp</type>
<port>0</port>
<txt-record>model=RackMac</txt-record>
is added to avahi.
In "source3/modules/vfs_fruit.c" I see that the paramater fruit:model is processed, but it does not seem to be used by avahi_register nor does it seem to be propagted.
...
2013 Sep 13
1
inconsistency/bug in recordPlot/replayPlot
...yPlot(recplot)
dev.off()
The resulting png files are attached. You'll notice that the noreplay.png
has the expected white background, while withoutreplay.png has no/a
transparent background.
This seems likely to be related to the note in ?dev.print :
"
Note that these functions copy the _device region_ and not a plot:
the background colour of the device surface is part of what is
copied. Most screen devices default to a transparent background,
which is probably not what is needed when copying to a device such
as ?png?.
"
Now this may be as intended because it is...
2010 Aug 05
0
No subject
...a_codec joydev snd_hwdep arc4 pcmcia snd_pcm_oss snd_mixer_oss snd_=
pcm ecb snd_seq_midi yenta_socket serio_raw iwl3945 snd_rawmidi i2c_i801 rs=
rc_nonstatic nvidia(P) snd_seq_midi_event video thinkpad_acpi pcmcia_core i=
wlcore output evdev psmouse pcspkr i2c_core nvram snd_seq snd_timer snd_seq=
_device snd soundcore snd_page_alloc mac80211 wmi cfg80211 rfkill button ba=
ttery ac processor acpi_processor ext4 mbcache jbd2 crc16 sg sr_mod sd_mod =
crc_t10dif cdrom ata_generic uhci_hcd sdhci_pci sdhci ahci firewire_ohci at=
a_piix thermal ricoh_mmc mmc_core led_class firewire_core crc_itu_t libata =...
2018 Oct 31
0
kiwi-ltsp - slave printer setup
...CALDEV = True
SERVER = 192.168.0.1
SCREEN_07 = ldm
LOCAL_APPS = true
LTSP_FATCLIENT = false
LDM_PASSWORD_HASH = true
ENCRYPT_SWAP = false
XRANDR_DISABLE = True
X_MODE_0 = 1024.x768
X_MODE_1 = 1280x1024
X_MODE_2 = 1440x900
#
[ws101]
MODULE_01= usb-uhci
MODULE_02= printer
PRINTER_0_TYPE = U
PRINTER_0-_DEVICE = /dev/usb/lp0
#PRINTER_0_PORT = 9100?
-----------------------------------------------------------------------------
Michel Donais
2007 Jan 11
2
FreeBSD Security Advisory FreeBSD-SA-07:01.jail
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
=============================================================================
FreeBSD-SA-07:01.jail Security Advisory
The FreeBSD Project
Topic: Jail rc.d script privilege escalation
Category: core
Module: etc_rc.d
Announced:
2013 Mar 14
1
[PATCH] x86/mce: Use MCG_CAP MSR to find out number of banks on AMD
...s(unsigned int cpu,
u32 low, high;
int err;
- if ((bank >= NR_BANKS) || (block >= NR_BLOCKS))
+ if ((bank >= mca_cfg.banks) || (block >= NR_BLOCKS))
return 0;
if (rdmsr_safe_on_cpu(cpu, address, &low, &high))
@@ -637,7 +636,12 @@ static __cpuinit int threshold_create_device(unsigned int cpu)
unsigned int bank;
int err = 0;
- for (bank = 0; bank < NR_BANKS; ++bank) {
+ per_cpu(threshold_banks, cpu) = kzalloc(sizeof(struct threshold_bank *)
+ * mca_cfg.banks, GFP_KERNEL);
+ if (per_cpu(threshold_banks, cpu) == NULL)
+ return -ENOMEM;
+
+ for (bank = 0; bank &...
2013 Jul 15
8
[PATCH 0 of 7 v5] Introduce the tapback daemon (most of blkback in user-space)
This patch series introduces the tapback daemon, the user space daemon that
acts as a device''s back-end, essentially most of blkback in user space. The
daemon is responsible for coordinating the front-end and tapdisk. It creates
tapdisk process as needed, instructs them to connect to/disconnect from the
shared ring, and manages the state of the back-end.
The shared ring between the
2016 Dec 06
9
[PATCH 0/8] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some
fixes, I now submit it as its own series to make it easier to review (and also
because rebasing secure boot on top of this takes time and I don't want to do
it until this is validated!).
This series attempts to factorize the duplicate falcon-related code into a
single library, using the existing nvkm_falcon
2016 Dec 13
15
[PATCH v2 0/15] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some
fixes, I now submit it as its own series to make it easier to review (and also
because rebasing secure boot on top of this takes time and I don't want to do
it until this is validated!).
This series attempts to factorize the duplicate falcon-related code into a
single library, using the existing nvkm_falcon
2011 Mar 27
3
PowerDVD 10 under Wine
...erred _font
PE 400000- 41c000 Deferred powerdvdcox10
PE 740000- 842000 Deferred mfc71u
PE 10e0000- 118b000 Deferred _bsddb.pyd
PE 12a0000- 12ad000 Deferred _climage
PE 12b0000- 12c8000 Deferred _device
PE 12e0000- 12f6000 Deferred evoparser
PE 1300000- 1314000 Deferred _clmovielibrary
PE 1320000- 13c9000 Deferred 2cmovie
PE 16e0000- 16f6000 Deferred _swcommunicator
PE 1700000- 1859000 Deferred _render3d...
2016 Oct 11
10
[PATCH 0/8] Secure Boot refactoring
Hi everyone,
Apologies for the big patchset. This is a rework of the secure boot code that
moves the building of the blob into its own set of source files (and own hooks),
making the code more flexible and (hopefully) easier to understand as well.
This rework is needed to support more signed firmware for existing and new
chips. Since the firmwares in question are not available yet I cannot send
2016 Oct 27
15
[PATCH v2 00/14] Secure Boot refactoring
This is a rework of the secure boot code that moves the building of the blob
into its own set of source files (and own hooks), making the code more flexible
and (hopefully) easier to understand as well.
This rework is needed to support more signed firmware for existing and new
chips. Since the firmwares in question are not available yet I cannot send the
code to manage then, but hopefully the
2016 Nov 02
15
[PATCH v3 00/15] Secure Boot refactoring
This is a rework of the secure boot code that moves the building of the blob
into its own set of source files (and own hooks), making the code more flexible
and (hopefully) easier to understand as well.
This rework is needed to support more signed firmware for existing and new
chips. Since the firmwares in question are not available yet I cannot send the
code to manage then, but hopefully the
2016 Nov 21
33
[PATCH v4 0/33] Secure Boot refactoring / signed PMU firmware support for GM20B
This revision includes initial signed PMU firmware support for GM20B
(Tegra X1). This PMU code will also be used as a basis for dGPU signed
PMU firmware support.
With the PMU code, the refactoring of secure boot should also make
more sense.
ACR (secure boot) support is now separated by the driver version it
originates from. This separation allows to run any version of the ACR
on any chip,