search for: 19,8

Displaying 20 results from an estimated 168 matches for "19,8".

Did you mean: 1,8
2006 Nov 08
2
freebsd-security Digest, Vol 184, Issue 2
...ot' differs from the previous one. Rather than overwriting the previous one, move it to a backup, create the new one, and log something if they differ. I hacked this up in a couple of minutes: --- /etc/rc.d/dmesg Sat May 6 21:00:26 2006 +++ dmesg Tue Nov 7 20:17:47 2006 @@ -19,8 +19,10 @@ do_dmesg() { - rm -f ${dmesg_file} + mv -f ${dmesg_file} ${dmesg_file}.prev ( umask 022 ; /sbin/dmesg $rc_flags > ${dmesg_file} ) + cmp -s ${dmesg_file} ${dmesg_file}.prev || \ + logger -p security.warn 'dmesg.boot changed from previous...
2018 Feb 12
2
[PATCH] inspect: recognize the Kali Linux distribution (RHBZ#1544227)
Read the information from os-release, and make it behave like a Debian distribution (i.e. using dpkg, and apt). --- daemon/inspect_fs.ml | 2 ++ daemon/inspect_fs_unix.ml | 1 + daemon/inspect_types.ml | 2 ++ daemon/inspect_types.mli | 1 + generator/actions_inspection.ml | 4 ++++ 5 files changed, 10 insertions(+) diff --git a/daemon/inspect_fs.ml
2013 Mar 13
2
How to read a *.csv file in R?
Hey guys, I am dealing with this kind of data. To read the file in R I have nulled all empty fields and tried: date BRENT BRENTchg HWWI HWWIchg Jan. 86 22,5 NULL 68,1 -15,6 Feb.86 17 NULL 64,9 -21,6 Mar. 86 13,7 NULL 66,6 -19,5 Apr.86 12,3 NULL 63,6 -19,1 May 86 14 NULL 61,5 -20,9 June 86 11,8 NULL 59,8 -20,7 July 86 9,4 NULL 57,2 -19,3 Aug.86 13,2 NULL 55,5 -18,3 Sep.86 14,2 NULL 57,5 -15,1 Oct. 86 13,7 NULL 55,5 -14,1 Nov.86 14,4 NULL 54,9 -14,9 Dec. 86 15,7 NULL 52,9 -26,4 Jan. 87 18,3 -18,67 49,8 -26,87 Feb.87 17,3...
2010 Apr 16
1
histogram breaks
=============================== Q2=c( + sample(10:19,8,T), + sample(20:24,15,T), + sample(25:29,25,T), + sample(30:39,18,T), + sample(40:49,12,T), + sample(50:64,7,T), + sample(65:89,5,T) + ) ================================ hist(Q2) can give me a histogram, however, how do i get a different 'breaks'? i want to be break down into the inte...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
..._H +#define _UAPI_ASM_GENERIC_KVM_PARA_H + /* * There isn't anything here, but the file must not be empty or patch * will delete it. */ + +#endif /* _UAPI_ASM_GENERIC_KVM_PARA_H */ diff --git a/include/uapi/asm-generic/mman-common.h b/include/uapi/asm-generic/mman-common.h index 4164529..191cee2 100644 --- a/include/uapi/asm-generic/mman-common.h +++ b/include/uapi/asm-generic/mman-common.h @@ -1,5 +1,5 @@ -#ifndef __ASM_GENERIC_MMAN_COMMON_H -#define __ASM_GENERIC_MMAN_COMMON_H +#ifndef _UAPI_ASM_GENERIC_MMAN_COMMON_H +#define _UAPI_ASM_GENERIC_MMAN_COMMON_H /* Author: Michael S...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
..._H +#define _UAPI_ASM_GENERIC_KVM_PARA_H + /* * There isn't anything here, but the file must not be empty or patch * will delete it. */ + +#endif /* _UAPI_ASM_GENERIC_KVM_PARA_H */ diff --git a/include/uapi/asm-generic/mman-common.h b/include/uapi/asm-generic/mman-common.h index 4164529..191cee2 100644 --- a/include/uapi/asm-generic/mman-common.h +++ b/include/uapi/asm-generic/mman-common.h @@ -1,5 +1,5 @@ -#ifndef __ASM_GENERIC_MMAN_COMMON_H -#define __ASM_GENERIC_MMAN_COMMON_H +#ifndef _UAPI_ASM_GENERIC_MMAN_COMMON_H +#define _UAPI_ASM_GENERIC_MMAN_COMMON_H /* Author: Michael S...
2013 Aug 02
3
[PATCH trivial] include: uapi: standard all files' macro prefix and suffix, excluding "linux/" sub-directory
..._H +#define _UAPI_ASM_GENERIC_KVM_PARA_H + /* * There isn't anything here, but the file must not be empty or patch * will delete it. */ + +#endif /* _UAPI_ASM_GENERIC_KVM_PARA_H */ diff --git a/include/uapi/asm-generic/mman-common.h b/include/uapi/asm-generic/mman-common.h index 4164529..191cee2 100644 --- a/include/uapi/asm-generic/mman-common.h +++ b/include/uapi/asm-generic/mman-common.h @@ -1,5 +1,5 @@ -#ifndef __ASM_GENERIC_MMAN_COMMON_H -#define __ASM_GENERIC_MMAN_COMMON_H +#ifndef _UAPI_ASM_GENERIC_MMAN_COMMON_H +#define _UAPI_ASM_GENERIC_MMAN_COMMON_H /* Author: Michael S...
2016 Jan 30
2
[llvm] r259255 - Need #include <cstdint> for uint64_t
...runk/lib/IR/AttributeImpl.h?rev=259255&r1=259254&r2=259255&view=diff> > ============================================================================== > --- llvm/trunk/lib/IR/AttributeImpl.h (original) > +++ llvm/trunk/lib/IR/AttributeImpl.h Fri Jan 29 16:35:29 2016 > @@ -19,8 +19,9 @@ > #include "llvm/ADT/FoldingSet.h" > #include "llvm/IR/Attributes.h" > #include "llvm/Support/TrailingObjects.h" > -#include <string> > #include <climits> > +#include <cstdint> > +#include <string> > >...
2009 Aug 05
1
[PATCH server] associated nics w/ network base class as it is in the db
...at http://www.gnu.org/copyleft/gpl.html. class PhysicalNetwork < Network - has_many :nics - def is_destroyable? nics.empty? end diff --git a/src/app/models/vlan.rb b/src/app/models/vlan.rb index 217a89c..e34dddc 100644 --- a/src/app/models/vlan.rb +++ b/src/app/models/vlan.rb @@ -19,8 +19,6 @@ class Vlan < Network has_many :bondings - has_many :nics - validates_presence_of :number, :message => 'A number must be specified.' -- 1.6.0.6
2018 Feb 12
0
[PATCH] customize, sysprep, v2v: handle Kali Linux as Debian
..." | "kalilinux") } -> true | _ -> false in Modules_list.register_convert_module matching "linux" convert diff --git a/v2v/convert_linux.mli b/v2v/convert_linux.mli index cc767033b..6abba4deb 100644 --- a/v2v/convert_linux.mli +++ b/v2v/convert_linux.mli @@ -19,8 +19,8 @@ (** Convert a Linux guest to run on KVM. This module converts certain Enterprise Linux guests to run on - KVM. RHEL, SuSE, Fedora, CentOS, OracleLinux, Debian, Ubuntu - and Mint are supported by this module. + KVM. RHEL, SuSE, Fedora, CentOS, OracleLinux, Debian, Ubunt...
2014 Sep 04
0
[PATCH 3/8] pwr/memx: Make FB disable and enable explicit
...(DELAY , 0x0001, 0x0000, #memx_func_delay) diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/os.h b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/os.h index 80f8328..50f9a38 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/os.h +++ b/drivers/gpu/drm/nouveau/core/subdev/pwr/fuc/os.h @@ -19,8 +19,8 @@ #define MEMX_MSG_EXEC 1 /* MEMX: script opcode definitions */ -#define MEMX_ENTER 0 -#define MEMX_LEAVE 1 +#define MEMX_FB_OFF 0 +#define MEMX_FB_ON 1 #define MEMX_WR32 2 #define MEMX_WAIT 3 #define MEMX_DELAY 4 diff --git a/drivers/gpu/drm/nouveau/core/subdev/pwr/memx.c b...
2016 Jan 30
2
[llvm] r259255 - Need #include <cstdint> for uint64_t
...p;r1=259254&r2=259255&view=diff >>> >>> ============================================================================== >>> --- llvm/trunk/lib/IR/AttributeImpl.h (original) >>> +++ llvm/trunk/lib/IR/AttributeImpl.h Fri Jan 29 16:35:29 2016 >>> @@ -19,8 +19,9 @@ >>> #include "llvm/ADT/FoldingSet.h" >>> #include "llvm/IR/Attributes.h" >>> #include "llvm/Support/TrailingObjects.h" >>> -#include <string> >>> #include <climits> >>> +#include <cstdi...
2011 Feb 11
1
[PATCH 2/3]: Staging: hv: Use native wait primitives
...+++++++-------------- drivers/staging/hv/vmbus_private.h | 3 +- 9 files changed, 208 insertions(+), 172 deletions(-) diff --git a/drivers/staging/hv/channel.c b/drivers/staging/hv/channel.c index 6c292e6..5a0923c 100644 --- a/drivers/staging/hv/channel.c +++ b/drivers/staging/hv/channel.c @@ -19,6 +19,8 @@ * Hank Janssen <hjanssen at microsoft.com> */ #include <linux/kernel.h> +#include <linux/sched.h> +#include <linux/wait.h> #include <linux/mm.h> #include <linux/slab.h> #include <linux/module.h> @@ -243,11 +245,7 @@ int vmbus_open(stru...
2011 Feb 11
1
[PATCH 2/3]: Staging: hv: Use native wait primitives
...+++++++-------------- drivers/staging/hv/vmbus_private.h | 3 +- 9 files changed, 208 insertions(+), 172 deletions(-) diff --git a/drivers/staging/hv/channel.c b/drivers/staging/hv/channel.c index 6c292e6..5a0923c 100644 --- a/drivers/staging/hv/channel.c +++ b/drivers/staging/hv/channel.c @@ -19,6 +19,8 @@ * Hank Janssen <hjanssen at microsoft.com> */ #include <linux/kernel.h> +#include <linux/sched.h> +#include <linux/wait.h> #include <linux/mm.h> #include <linux/slab.h> #include <linux/module.h> @@ -243,11 +245,7 @@ int vmbus_open(stru...
2020 Aug 18
2
[PATCH 1/2] drm: allow limiting the scatter list size.
...*drm_prime_pages_to_sg(struct page **pages, unsigned int nr_pages, + size_t max_segment); struct dma_buf *drm_gem_prime_export(struct drm_gem_object *obj, int flags); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c index 519ce4427fce..5e8a9760b33f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c @@ -303,7 +303,8 @@ static struct sg_table *amdgpu_dma_buf_map(struct dma_buf_attachment *attach, switch (bo->tbo.mem.mem_type) { case TTM_PL_TT: sgt = drm_pri...
2020 Aug 18
2
[PATCH v2 1/2] drm: allow limiting the scatter list size.
...*drm_prime_pages_to_sg(struct page **pages, unsigned int nr_pages, + size_t max_segment); struct dma_buf *drm_gem_prime_export(struct drm_gem_object *obj, int flags); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c index 519ce4427fce..8f6a647757e7 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c @@ -303,7 +303,8 @@ static struct sg_table *amdgpu_dma_buf_map(struct dma_buf_attachment *attach, switch (bo->tbo.mem.mem_type) { case TTM_PL_TT: sgt = drm_pri...
2016 Dec 08
3
[PATCH 0/2] mllib: Add quote function to Common_utils module.
Doing this allows us to remove the Customize_utils module completely, since it becomes empty. Rich.
2005 Jan 29
2
Patch : fix configure.in and Makefile.am problems.
...lib_LTLIBRARIES = libOggFLAC++.la -CXXFLAGS = @CXXFLAGS@ m4datadir = $(datadir)/aclocal m4data_DATA = libOggFLAC++.m4 Index: src/metaflac/Makefile.am =================================================================== RCS file: /cvsroot/flac/flac/src/metaflac/Makefile.am,v retrieving revision 1.19 diff -u -r1.19 Makefile.am --- src/metaflac/Makefile.am 25 Jan 2005 04:18:38 -0000 1.19 +++ src/metaflac/Makefile.am 30 Jan 2005 05:23:55 -0000 @@ -16,7 +16,6 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. bin_PROGRAMS = metaflac -CFLAGS = @CFLAGS@ EXTRA_DI...
2020 Aug 18
0
[PATCH 1/2] drm: allow limiting the scatter list size.
...e **pages, unsigned int nr_pages, > + size_t max_segment); > struct dma_buf *drm_gem_prime_export(struct drm_gem_object *obj, > int flags); > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c > index 519ce4427fce..5e8a9760b33f 100644 > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c > @@ -303,7 +303,8 @@ static struct sg_table *amdgpu_dma_buf_map(struct dma_buf_attachment *attach, > switch (bo->tbo.mem.mem_type) { > case...
2020 Sep 07
0
[PATCH v3 1/2] drm: allow limiting the scatter list size.
...*drm_prime_pages_to_sg(struct page **pages, unsigned int nr_pages, + size_t max_segment); struct dma_buf *drm_gem_prime_export(struct drm_gem_object *obj, int flags); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c index 519ce4427fce..8f6a647757e7 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c @@ -303,7 +303,8 @@ static struct sg_table *amdgpu_dma_buf_map(struct dma_buf_attachment *attach, switch (bo->tbo.mem.mem_type) { case TTM_PL_TT: sgt = drm_pri...