From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f41.google.com (mail-wg0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id BBEBAB3AE for ; Tue, 26 Aug 2014 16:06:46 +0200 (CEST) Received: by mail-wg0-f41.google.com with SMTP id z12so14600169wgg.12 for ; Tue, 26 Aug 2014 07:10:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=wVVoTlDqx9Pm18NZz5Axv7Kps+JqMZWkAhcr3jTRcfs=; b=blkq2A6/JyidUftaUoGDCssOA5UCHDeyfS3OkGA5g6L6p+KLppDpA6/7xCR1oEmOJt vdjYldf8qDac3rkMYDysyqtrcm16SPictaQB6LATc6b11UchyrzzoNE0ClYYcSmJXZjQ O+LclerGHg4so2ZxbyoZhWIkIekMbbkVds9Zb25e/+M9SL0PDx4B3KoYB9npxU7DH9SL 6LDYLiwwHx/LVhgLkl9S+covvPGm4UXkmnEq9LivVs60CuMjSJ3M3M7vsitLAzXG7VsQ wsZQgOzQNwWjEA6xBupQbvMbvfYvx92H9grLakF677iyE9jUPYfSt4PkvuVulyVH7vFW Dl4Q== X-Gm-Message-State: ALoCoQm2nMA8k8QF8xD1w2peSDhE3iUPvBUxWaJ3znlEVAjx/PIDvxO6whH7sqlkZcgQxLYIFIsT X-Received: by 10.180.82.41 with SMTP id f9mr22497922wiy.79.1409062246733; Tue, 26 Aug 2014 07:10:46 -0700 (PDT) Received: from alcyon.dev.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by mx.google.com with ESMTPSA id h6sm8583075wjb.33.2014.08.26.07.10.45 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 26 Aug 2014 07:10:46 -0700 (PDT) From: David Marchand To: dev@dpdk.org Date: Tue, 26 Aug 2014 16:10:41 +0200 Message-Id: <1409062241-7159-1-git-send-email-david.marchand@6wind.com> X-Mailer: git-send-email 1.7.10.4 Subject: [dpdk-dev] [PATCH] fix unix permissions for source files X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2014 14:06:46 -0000 No need for that 'x bit' on source files. Signed-off-by: David Marchand --- 0 files changed mode change 100755 => 100644 examples/l3fwd/main.c mode change 100755 => 100644 examples/qos_meter/main.c mode change 100755 => 100644 examples/qos_meter/main.h mode change 100755 => 100644 examples/qos_sched/Makefile mode change 100755 => 100644 examples/qos_sched/app_thread.c mode change 100755 => 100644 examples/qos_sched/args.c mode change 100755 => 100644 examples/qos_sched/cfg_file.c mode change 100755 => 100644 examples/qos_sched/cfg_file.h mode change 100755 => 100644 examples/qos_sched/init.c mode change 100755 => 100644 examples/qos_sched/main.c mode change 100755 => 100644 examples/qos_sched/main.h mode change 100755 => 100644 lib/librte_cmdline/cmdline.c mode change 100755 => 100644 lib/librte_eal/bsdapp/eal/include/exec-env/rte_kni_common.h mode change 100755 => 100644 lib/librte_eal/common/eal_common_hexdump.c mode change 100755 => 100644 lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h mode change 100755 => 100644 lib/librte_timer/rte_timer.c mode change 100755 => 100644 lib/librte_timer/rte_timer.h diff --git a/examples/l3fwd/main.c b/examples/l3fwd/main.c old mode 100755 new mode 100644 diff --git a/examples/qos_meter/main.c b/examples/qos_meter/main.c old mode 100755 new mode 100644 diff --git a/examples/qos_meter/main.h b/examples/qos_meter/main.h old mode 100755 new mode 100644 diff --git a/examples/qos_sched/Makefile b/examples/qos_sched/Makefile old mode 100755 new mode 100644 diff --git a/examples/qos_sched/app_thread.c b/examples/qos_sched/app_thread.c old mode 100755 new mode 100644 diff --git a/examples/qos_sched/args.c b/examples/qos_sched/args.c old mode 100755 new mode 100644 diff --git a/examples/qos_sched/cfg_file.c b/examples/qos_sched/cfg_file.c old mode 100755 new mode 100644 diff --git a/examples/qos_sched/cfg_file.h b/examples/qos_sched/cfg_file.h old mode 100755 new mode 100644 diff --git a/examples/qos_sched/init.c b/examples/qos_sched/init.c old mode 100755 new mode 100644 diff --git a/examples/qos_sched/main.c b/examples/qos_sched/main.c old mode 100755 new mode 100644 diff --git a/examples/qos_sched/main.h b/examples/qos_sched/main.h old mode 100755 new mode 100644 diff --git a/lib/librte_cmdline/cmdline.c b/lib/librte_cmdline/cmdline.c old mode 100755 new mode 100644 diff --git a/lib/librte_eal/bsdapp/eal/include/exec-env/rte_kni_common.h b/lib/librte_eal/bsdapp/eal/include/exec-env/rte_kni_common.h old mode 100755 new mode 100644 diff --git a/lib/librte_eal/common/eal_common_hexdump.c b/lib/librte_eal/common/eal_common_hexdump.c old mode 100755 new mode 100644 diff --git a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h old mode 100755 new mode 100644 diff --git a/lib/librte_timer/rte_timer.c b/lib/librte_timer/rte_timer.c old mode 100755 new mode 100644 diff --git a/lib/librte_timer/rte_timer.h b/lib/librte_timer/rte_timer.h old mode 100755 new mode 100644 -- 1.7.10.4